From 2afacfc403d439261b7a60c73e164423bc63bbc6 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 12 Dec 2003 18:45:10 +0000 Subject: This patch properly sets the prototype for the on_shmem_exit and on_proc_exit functions, and adjust all other related code to use the proper types too. by Kurt Roeckx --- src/backend/access/transam/xlog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/transam/xlog.c') diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index ff64afe4f55..9aa19ea5945 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.126 2003/11/29 19:51:40 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.127 2003/12/12 18:45:08 petere Exp $ * *------------------------------------------------------------------------- */ @@ -3086,7 +3086,7 @@ GetRedoRecPtr(void) * This must be called ONCE during postmaster or standalone-backend shutdown */ void -ShutdownXLOG(void) +ShutdownXLOG(int code, Datum arg) { ereport(LOG, (errmsg("shutting down"))); -- cgit v1.2.3