Skip to content
Snippets Groups Projects
Commit a4aab6c4 authored by rswindell's avatar rswindell
Browse files

Fixed gcc printf format warning.

parent 397b50ae
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ int main()
printf("sleeping... ");
fflush(stdout);
SLEEP(5000);
printf("slept %d seconds\n",time(NULL)-t);
printf("slept %ld seconds\n",time(NULL)-t);
/* glob test */
printf("\nglob(%s) test\n",glob_pattern);
......
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