1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +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/storage/smgr/smgr.c,v 1.37 2000/06/19 23:37:08 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.38 2000/10/02 19:42:52 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -112,7 +112,7 @@ smgrinit()
}
/* register the shutdown proc */
on_proc_exit(smgrshutdown, NULL);
on_proc_exit(smgrshutdown, 0);
return SM_SUCCESS;
}