From cf725107f396b4fc40f50343519f1cf9ceba6a22 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 19 Jul 1996 17:18:51 +0000 Subject: Fri Jul 19 13:18:02 1996 Roland McGrath * hurd/report-wait.c (describe_number): Use unsigned long int for J. (subdir): Fix name. --- hurd/report-wait.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hurd') diff --git a/hurd/report-wait.c b/hurd/report-wait.c index 9c7a407..20cc166 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. */ -- cgit v1.1