From: Jim Meyering Date: Fri, 24 Oct 1997 13:17:16 +0000 (+0000) Subject: Use unsigned int, not just unsigned. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53862d8f1a0ef57d53ed1fc3035cde8a6e56bca2;p=pspp Use unsigned int, not just unsigned. --- diff --git a/lib/savedir.c b/lib/savedir.c index f4c0c12ce1..76634eef4e 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 3cc2491b1c..0513974d7f 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));