1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Mop up from caddr_t -> Datum conversion to make things extra type safe

This commit is contained in:
Peter Eisentraut
2000-10-02 21:45:33 +00:00
parent 416bbbffa3
commit 65577dc83e
4 changed files with 17 additions and 14 deletions

View File

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.38 2000/10/02 19:42:52 petere Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.39 2000/10/02 21:45:33 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,7 +19,7 @@
#include "storage/smgr.h"
static void smgrshutdown(int dummy);
static void smgrshutdown(void);
typedef struct f_smgr
{
@@ -118,7 +118,7 @@ smgrinit()
}
static void
smgrshutdown(int dummy)
smgrshutdown(void)
{
int i;