X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=lib%2Fstrmhz.c;h=5c16cc4fc7566dcfb7ff0eb6ccaed9074f5ecb4b;hb=3c97c1d9ce78c8cf530974dafebb03be69f7cc0f;hp=f9a17727f53b898e307a7b65853c00623f135909;hpb=c2120fbfbc4d1f6953228f86be8bdbf38bacfdab;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);