diff options
Diffstat (limited to 'src/bin/pg_basebackup/pg_recvlogical.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_recvlogical.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/pg_recvlogical.c b/src/bin/pg_basebackup/pg_recvlogical.c index a86739ec126..4392e23e888 100644 --- a/src/bin/pg_basebackup/pg_recvlogical.c +++ b/src/bin/pg_basebackup/pg_recvlogical.c @@ -654,7 +654,7 @@ error: * possible moment. */ static void -sigexit_handler(int signum) +sigexit_handler(SIGNAL_ARGS) { time_to_abort = true; } @@ -663,7 +663,7 @@ sigexit_handler(int signum) * Trigger the output file to be reopened. */ static void -sighup_handler(int signum) +sighup_handler(SIGNAL_ARGS) { output_reopen = true; } |