From: Roland McGrath Date: Fri, 19 Jul 1996 17:18:51 +0000 (+0000) Subject: Fri Jul 19 13:18:02 1996 Roland McGrath X-Git-Tag: cvs/libc-960720 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf725107f396b4fc40f50343519f1cf9ceba6a22;p=thirdparty%2Fglibc.git Fri Jul 19 13:18:02 1996 Roland McGrath * hurd/report-wait.c (describe_number): Use unsigned long int for J. (subdir): Fix name. --- diff --git a/ChangeLog b/ChangeLog index 31a3cadc7fa..dec9858b799 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,12 @@ +Fri Jul 19 13:18:02 1996 Roland McGrath + + * hurd/report-wait.c (describe_number): Use unsigned long int for J. + Thu Jul 18 11:42:39 1996 Roland McGrath * crypt/Makefile (lib-noranlib): Depend on $(objpfx)libcrypt.so$(libcrypt.so-version). + (subdir): Fix name. Thu Jul 18 04:33:21 1996 Roland McGrath diff --git a/hurd/report-wait.c b/hurd/report-wait.c index 9c7a4074fd5..20cc1663562 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. */