From: Jim Meyering Date: Fri, 24 Oct 1997 13:17:16 +0000 (+0000) Subject: Use unsigned int, not just unsigned. X-Git-Tag: cvs-readonly~8103 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=53862d8f1a0ef57d53ed1fc3035cde8a6e56bca2;p=gnulib.git Use unsigned int, not just unsigned. --- diff --git a/lib/savedir.c b/lib/savedir.c index f4c0c12ce..76634eef4 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -76,7 +76,7 @@ char *stpcpy (); char * savedir (dir, name_size) const char *dir; - unsigned name_size; + unsigned int name_size; { DIR *dirp; struct dirent *dp; diff --git a/lib/savedir.h b/lib/savedir.h index 3cc2491b1..0513974d7 100644 --- a/lib/savedir.h +++ b/lib/savedir.h @@ -6,4 +6,4 @@ #endif char * -savedir __P((const char *dir, unsigned name_size)); +savedir __P((const char *dir, unsigned int name_size));