Skip to content
Snippets Groups Projects
Commit 1d0b7e71 authored by Tom Lane's avatar Tom Lane
Browse files

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

parent d1876886
Branches
Tags
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment