diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-06-13 10:19:46 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-06-13 10:19:46 +0200 |
| commit | e6f37cf64ec911ddbe89998a97e311662891bf28 (patch) | |
| tree | 123e63ca852678054f9507429b6dae5ac807b932 | |
| parent | 63ac70281a28b96bd70259bb0949c3964415271f (diff) | |
| download | plan9front-e6f37cf64ec911ddbe89998a97e311662891bf28.tar.xz | |
pc64: fix MS2HZ (thanks Anthony Martin)
| -rw-r--r-- | sys/src/9/pc64/mem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc64/mem.h b/sys/src/9/pc64/mem.h index 9ec07363a..acbbff43d 100644 --- a/sys/src/9/pc64/mem.h +++ b/sys/src/9/pc64/mem.h @@ -36,7 +36,7 @@ * Time */ #define HZ (100) /* clock frequency */ -#define MS2HZ (100/HZ) /* millisec per clock tick */ +#define MS2HZ (1000/HZ) /* millisec per clock tick */ #define TK2SEC(t) ((t)/HZ) /* ticks to seconds */ /* |
