fixed a minor glitch in the pio sample code

This commit is contained in:
hyung-hwan 2011-08-13 22:44:43 +00:00
parent 14572f08aa
commit 8923102323
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* The standard CSS for doxygen */ /* The standard CSS for doxygen */
body, table, div, p, dl { body, table, div, p, dl {
font-family: Ubuntu, Lucida Grande, Verdana, Geneva, Arial, sans-serif; font-family: Ubuntu, "Trebuchet MS", Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: 13px; font-size: 13px;
} }

View File

@ -336,7 +336,7 @@ static int test12 (void)
qse_printf (QSE_T("sleeping for %d seconds\n"), n); qse_printf (QSE_T("sleeping for %d seconds\n"), n);
Sleep (n * 1000); Sleep (n * 1000);
qse_printf (QSE_T("WaitForSingleObject....%d\n"), qse_printf (QSE_T("WaitForSingleObject....%d\n"),
(int)WaitForSingleObject (pio->child, 0)); (int)WaitForSingleObject (pio->child, INFINITE));
} }
#elif defined(__OS2__) #elif defined(__OS2__)
{ {