X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=lib%2Fstrmhz.c;h=5c16cc4fc7566dcfb7ff0eb6ccaed9074f5ecb4b;hb=3a67c7576e36b880ec7d6d73d906dc5046e1df1b;hp=f9a17727f53b898e307a7b65853c00623f135909;hpb=58494052b5fa1c2cbed9f1e04049f2951708cfa3;p=karo-tx-uboot.git diff --git a/lib/strmhz.c b/lib/strmhz.c index f9a17727f5..5c16cc4fc7 100644 --- a/lib/strmhz.c +++ b/lib/strmhz.c @@ -11,11 +11,11 @@ char *strmhz (char *buf, unsigned long hz) long l, n; long m; - n = DIV_ROUND(hz, 1000) / 1000L; + n = DIV_ROUND_CLOSEST(hz, 1000) / 1000L; l = sprintf (buf, "%ld", n); hz -= n * 1000000L; - m = DIV_ROUND(hz, 1000L); + m = DIV_ROUND_CLOSEST(hz, 1000L); if (m != 0) sprintf (buf + l, ".%03ld", m); return (buf);