Commit 28475f8e authored by Heikki Linnakangas's avatar Heikki Linnakangas

Use pg_usleep() instead of plain sleep(), to fix Windows build

Per buildfarm.
parent ce9bb92f
...@@ -705,7 +705,7 @@ main(int argc, char **argv) ...@@ -705,7 +705,7 @@ main(int argc, char **argv)
break; break;
else else
{ {
sleep(1); pg_usleep(1000000L); /* 1 second */
continue; continue;
} }
} }
......
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