diff options
Diffstat (limited to 'hurd/report-wait.c')
-rw-r--r-- | hurd/report-wait.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/report-wait.c b/hurd/report-wait.c index 9c7a4074fd..20cc166356 100644 --- a/hurd/report-wait.c +++ b/hurd/report-wait.c @@ -27,9 +27,9 @@ Cambridge, MA 02139, USA. */ #include "intr-msg.h" static void -describe_number (string_t description, const char *flavor, unsigned long i) +describe_number (string_t description, const char *flavor, unsigned long int i) { - int j; + unsigned long int j; char *p = __stpcpy (description, flavor); /* Allocate space for the number at the end of DESCRIPTION. */ |