aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorAndrew Innes2000-08-22 21:22:20 +0000
committerAndrew Innes2000-08-22 21:22:20 +0000
commitc09c2c99950c90260b18d2024eb80ba4ebf5a912 (patch)
treebc2767aff2f145b42b8ff9254f65899de61d757b /lib-src
parent9112a2a976c22d1b912a397882ead4b9bd437e51 (diff)
downloademacs-c09c2c99950c90260b18d2024eb80ba4ebf5a912.tar.gz
emacs-c09c2c99950c90260b18d2024eb80ba4ebf5a912.zip
(sleep): Make argument unsigned long.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ntlib.c2
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.
35 would necessitate including windows.h in the files that used it. 35 would necessitate including windows.h in the files that used it.
36 This is much easier. */ 36 This is much easier. */
37void 37void
38sleep(int seconds) 38sleep(unsigned long seconds)
39{ 39{
40 Sleep (seconds * 1000); 40 Sleep (seconds * 1000);
41} 41}