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