summaryrefslogtreecommitdiff
path: root/lib/sig2str.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-08-02 22:58:22 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-08-02 22:58:22 +0000
commitaebe5892612879d14b1e4c87abfdcb6638eefc17 (patch)
treefe4f1f42a6ea01a91c44fdc2db0270c1d54a076f /lib/sig2str.c
parente55f95fe9788a9e0437d2fc2a4d7330b823381ed (diff)
downloadcoreutils-aebe5892612879d14b1e4c87abfdcb6638eefc17.tar.xz
unsigned -> unsigned int
Diffstat (limited to 'lib/sig2str.c')
-rw-r--r--lib/sig2str.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sig2str.c b/lib/sig2str.c
index f1eec22bf..15d969c86 100644
--- a/lib/sig2str.c
+++ b/lib/sig2str.c
@@ -1,6 +1,6 @@
/* sig2str.c -- convert between signal names and numbers
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -253,7 +253,7 @@ static struct numname { int num; char const name[8]; } numname_table[] =
POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
ISDIGIT_LOCALE unless it's important to use the locale's definition
of `digit' even when the host does not conform to POSIX. */
-#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
+#define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
/* Convert the signal name SIGNAME to a signal number. Return the
signal number if successful, -1 otherwise. */
@@ -270,7 +270,7 @@ str2signum (char const *signame)
}
else
{
- unsigned i;
+ unsigned int i;
for (i = 0; i < NUMNAME_ENTRIES; i++)
if (strcmp (numname_table[i].name, signame) == 0)
return numname_table[i].num;
@@ -315,7 +315,7 @@ str2sig (char const *signame, int *signum)
int
sig2str (int signum, char *signame)
{
- unsigned i;
+ unsigned int i;
for (i = 0; i < NUMNAME_ENTRIES; i++)
if (numname_table[i].num == signum)
{