# HG changeset patch # User Andrew Innes # Date 966979340 0 # Node ID 1fd32e8a2fad1893db1a195ec63718b990daa94a # Parent 7ae519dba2371b4aa23c677f9a19cf89c1dcd345 (sleep): Make argument unsigned long. diff -r 7ae519dba237 -r 1fd32e8a2fad lib-src/ntlib.c --- a/lib-src/ntlib.c Tue Aug 22 21:20:07 2000 +0000 +++ b/lib-src/ntlib.c Tue Aug 22 21:22:20 2000 +0000 @@ -35,7 +35,7 @@ would necessitate including windows.h in the files that used it. This is much easier. */ void -sleep(int seconds) +sleep(unsigned long seconds) { Sleep (seconds * 1000); }