diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-01-13 15:48:54 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-01-13 15:48:54 -0500 |
commit | 26905e009babe6020fddcf3820e57e2f87c5539c (patch) | |
tree | 9b53036444651d704874568bd6b1c0d67a3b626d /src/bin/pg_dump/dumputils.h | |
parent | b1bfb28b586a319052d96dd4dfd40a05505ea6ed (diff) |
Run pgindent on src/bin/pg_dump/*
To ease doing indent fixups on a couple of patches I have in progress.
Diffstat (limited to 'src/bin/pg_dump/dumputils.h')
-rw-r--r-- | src/bin/pg_dump/dumputils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/dumputils.h b/src/bin/pg_dump/dumputils.h index 101515fca21..4941ec02e79 100644 --- a/src/bin/pg_dump/dumputils.h +++ b/src/bin/pg_dump/dumputils.h @@ -38,8 +38,8 @@ typedef struct SimpleOidList typedef struct SimpleStringListCell { struct SimpleStringListCell *next; - bool touched; /* true, when this string was searched - and touched */ + bool touched; /* true, when this string was searched and + * touched */ char val[FLEXIBLE_ARRAY_MEMBER]; /* null-terminated string here */ } SimpleStringListCell; |