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

Per buildfarm.
This commit is contained in:
Heikki Linnakangas 2014-03-26 15:25:39 +02:00
parent ce9bb92f8f
commit 28475f8e58
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ main(int argc, char **argv)
break;
else
{
sleep(1);
pg_usleep(1000000L); /* 1 second */
continue;
}
}