From: Andrew Innes Date: Tue, 22 Aug 2000 21:22:20 +0000 (+0000) Subject: (sleep): Make argument unsigned long. X-Git-Tag: emacs-pretest-21.0.90~2059 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c09c2c99950c90260b18d2024eb80ba4ebf5a912;p=emacs.git (sleep): Make argument unsigned long. --- diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c index 110a8ccb002..3e2caf50865 100644 --- a/lib-src/ntlib.c +++ b/lib-src/ntlib.c @@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. 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); }