Skip to content
Snippets Groups Projects
Commit 28475f8e authored by Heikki Linnakangas's avatar Heikki Linnakangas
Browse files

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

Per buildfarm.
parent ce9bb92f
No related branches found
No related tags found
No related merge requests found
......@@ -705,7 +705,7 @@ main(int argc, char **argv)
break;
else
{
sleep(1);
pg_usleep(1000000L); /* 1 second */
continue;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment