From 53862d8f1a0ef57d53ed1fc3035cde8a6e56bca2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 24 Oct 1997 13:17:16 +0000 Subject: [PATCH] Use unsigned int, not just unsigned. --- lib/savedir.c | 2 +- lib/savedir.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)); -- 2.30.2