From: Bruce Momjian Date: Sat, 5 Oct 1996 20:30:31 +0000 (+0000) Subject: Fix args to match prototype. X-Git-Tag: REL2_0~497 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=a433f22c241a7687a78b0cfe69b80a10f8e97fa3;p=users%2Fc2main%2Fpostgres.git Fix args to match prototype. --- diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 2d3064fa47..5e027113be 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.1.1.1 1996/07/09 06:21:19 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.2 1996/10/05 20:30:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -133,11 +133,7 @@ static void ClearPendingNotify(void); * none */ void -#if defined(PORTNAME_linux) -Async_NotifyHandler(int i) -#else -Async_NotifyHandler() -#endif +Async_NotifyHandler(SIGNAL_ARGS) { extern TransactionState CurrentTransactionState;