Print this page
4823 don't open-code NSEC2MSEC and MSEC2NSEC

@@ -2724,11 +2724,11 @@
 }
 
 static int
 ns2ms(int64_t ns)
 {
-        return (ns / (NANOSEC / MILLISEC));
+        return (NSEC2MSEC(ns));
 }
 
 static int64_t
 tv2ns(struct timeval *tvp)
 {