diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-10-17 12:19:05 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-10-17 12:19:05 -0400 |
commit | 7584649a1c58029a83a7a57d74cedcf1af434c97 (patch) | |
tree | a6dcf677444e379e5fcb59fc28dfc2192da15f5f /src/bin/pg_dump/pg_backup_archiver.c | |
parent | 389573fd19edd255736c50dfd0fd779da7535a7b (diff) |
Re-pgindent src/bin/pg_dump/*.
Seems to have gotten rather messy lately, as a consequence of a couple
of large recent commits.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 00c882dd365..ed28d36e138 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -4241,7 +4241,7 @@ identify_locking_dependencies(ArchiveHandle *AH, TocEntry *te) if (depid <= AH->maxDumpId && AH->tocsByDumpId[depid] != NULL && ((strcmp(AH->tocsByDumpId[depid]->desc, "TABLE DATA") == 0) || - strcmp(AH->tocsByDumpId[depid]->desc, "TABLE") == 0)) + strcmp(AH->tocsByDumpId[depid]->desc, "TABLE") == 0)) lockids[nlockids++] = depid; } |