diff --git a/include/common.h b/include/common.h index d8c912d09225eef098d39aa99dc4756536c0079a..893af5cc10eaf011466901a754c1440262dfe29b 100644 --- a/include/common.h +++ b/include/common.h @@ -648,7 +648,7 @@ int sprintf(char * buf, const char *fmt, ...) int vsprintf(char *buf, const char *fmt, va_list args); /* lib/strmhz.c */ -char * strmhz(char *buf, long hz); +char * strmhz(char *buf, unsigned long hz); /* lib/crc32.c */ #include <u-boot/crc.h> diff --git a/lib/strmhz.c b/lib/strmhz.c index d6da1d136eef49c4207127672e0c577f74ae8f47..89f2263aee20ebad1628569cd39a70a77a50a271 100644 --- a/lib/strmhz.c +++ b/lib/strmhz.c @@ -22,7 +22,7 @@ */ #include <common.h> -char *strmhz (char *buf, long hz) +char *strmhz (char *buf, unsigned long hz) { long l, n; long m;