diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-08-22 21:22:20 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-08-22 21:22:20 +0000 |
commit | c09c2c99950c90260b18d2024eb80ba4ebf5a912 (patch) | |
tree | bc2767aff2f145b42b8ff9254f65899de61d757b /lib-src | |
parent | 9112a2a976c22d1b912a397882ead4b9bd437e51 (diff) | |
download | emacs-c09c2c99950c90260b18d2024eb80ba4ebf5a912.tar.gz |
(sleep): Make argument unsigned long.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ntlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |