Commit f2c8f278 authored by Tom Lane's avatar Tom Lane

Portability fix from Steve Nicolai.

parent 0967057b
......@@ -17,7 +17,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.5 2001/03/22 04:00:13 momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.6 2001/03/24 23:11:14 tgl Exp $
*
* Modifications - 09-Jul-2000 - pjw@rhyme.com.au
*
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment