Skip to content
Snippets Groups Projects
Commit 97876f61 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Fix sleep(0.5) to sleep(1) -- truncation to int makes that dubious.

parent 8008d540
No related branches found
No related tags found
No related merge requests found
...@@ -313,7 +313,7 @@ namespace tut ...@@ -313,7 +313,7 @@ namespace tut
} }
// Do this once per tick, as we expect the viewer will // Do this once per tick, as we expect the viewer will
apr_proc_other_child_refresh_all(APR_OC_REASON_RUNNING); apr_proc_other_child_refresh_all(APR_OC_REASON_RUNNING);
sleep(0.5); sleep(1);
} }
apr_file_close(child.in); apr_file_close(child.in);
apr_file_close(child.out); apr_file_close(child.out);
......
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