1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Banish caddr_t (mostly), use Datum where appropriate.

This commit is contained in:
Peter Eisentraut
2000-10-02 19:42:56 +00:00
parent a81aef7f25
commit 416bbbffa3
11 changed files with 48 additions and 48 deletions

View File

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.166 2000/09/06 19:54:46 petere Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.167 2000/10/02 19:42:46 petere Exp $
*
* NOTES
*
@@ -628,7 +628,7 @@ PostmasterMain(int argc, char *argv[])
/*
* register clean up proc
*/
on_proc_exit(UnlinkPidFile, NULL);
on_proc_exit(UnlinkPidFile, 0);
}
/*
@@ -727,7 +727,7 @@ pmdaemonize(int argc, char *argv[])
/*
* register clean up proc
*/
on_proc_exit(UnlinkPidFile, NULL);
on_proc_exit(UnlinkPidFile, 0);
}