diff options
| author | Andrew Innes | 2000-08-22 21:22:20 +0000 |
|---|---|---|
| committer | Andrew Innes | 2000-08-22 21:22:20 +0000 |
| commit | c09c2c99950c90260b18d2024eb80ba4ebf5a912 (patch) | |
| tree | bc2767aff2f145b42b8ff9254f65899de61d757b /lib-src | |
| parent | 9112a2a976c22d1b912a397882ead4b9bd437e51 (diff) | |
| download | emacs-c09c2c99950c90260b18d2024eb80ba4ebf5a912.tar.gz emacs-c09c2c99950c90260b18d2024eb80ba4ebf5a912.zip | |
(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. | |||
| 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. */ |
| 37 | void | 37 | void |
| 38 | sleep(int seconds) | 38 | sleep(unsigned long seconds) |
| 39 | { | 39 | { |
| 40 | Sleep (seconds * 1000); | 40 | Sleep (seconds * 1000); |
| 41 | } | 41 | } |