Portability fix from Steve Nicolai.
authorTom Lane <[email protected]>
Sat, 24 Mar 2001 23:11:14 +0000 (23:11 +0000)
committerTom Lane <[email protected]>
Sat, 24 Mar 2001 23:11:14 +0000 (23:11 +0000)
src/bin/pg_dump/pg_backup_null.c

index 370f5040268a28cbd0e3c79dbb72deab18c4d662..c629d273a163c07b16975f80b52633613437b27f 100644 (file)
@@ -98,7 +98,7 @@ _EndData(ArchiveHandle *AH, TocEntry *te)
 static void
 _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt)
 {
-       if (*te->dataDumper)
+       if (te->dataDumper)
        {
                AH->currToc = te;
                (*te->dataDumper) ((Archive *) AH, te->oid, te->dataDumperArg);