1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Fix unportable usage complained of by icc. Per buildfarm results.

This commit is contained in:
Tom Lane
2006-09-11 01:41:35 +00:00
parent d18768867e
commit 1d0b7e71e3
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ main(void)
} }
static void static void
check_return(ret) check_return(int ret)
{ {
switch(ret) switch(ret)
{ {

View File

@ -49,7 +49,7 @@ main(void)
} }
static void static void
check_return(ret) check_return(int ret)
{ {
switch(ret) switch(ret)
{ {