Commit 1d0b7e71 authored by Tom Lane's avatar Tom Lane

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

parent d1876886
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment