mirror of
https://github.com/postgres/postgres.git
synced 2026-04-04 16:55:45 -04:00
Fix unportable usage complained of by icc. Per buildfarm results.
This commit is contained in:
parent
d18768867e
commit
1d0b7e71e3
2 changed files with 2 additions and 2 deletions
|
|
@ -151,7 +151,7 @@ main(void)
|
|||
}
|
||||
|
||||
static void
|
||||
check_return(ret)
|
||||
check_return(int ret)
|
||||
{
|
||||
switch(ret)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ main(void)
|
|||
}
|
||||
|
||||
static void
|
||||
check_return(ret)
|
||||
check_return(int ret)
|
||||
{
|
||||
switch(ret)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue