git: 9front

Download patch

ref: 85c9464c14444902ac354577917a471edb77da48
parent: dc6503047ae51b7d7d76ef4bf399446c98b12738
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Jun 13 06:19:46 EDT 2014

pc64: fix MS2HZ (thanks Anthony Martin)

--- 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 */
 
 /*
--