summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-07-19 17:18:51 +0000
committerRoland McGrath <roland@gnu.org>1996-07-19 17:18:51 +0000
commitcf725107f396b4fc40f50343519f1cf9ceba6a22 (patch)
treef8232d1afb6753b068010748f7325a5a60480499 /hurd
parent87e4c1ba63cd888c5f1907f8a6878125a993824c (diff)
Fri Jul 19 13:18:02 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>cvs/libc-960720
* hurd/report-wait.c (describe_number): Use unsigned long int for J. (subdir): Fix name.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/report-wait.c4
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. */