summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-08-08 10:12:43 +0000
committerJim Meyering <jim@meyering.net>1999-08-08 10:12:43 +0000
commit8e2cc070abdfaaae0cbb390ddb0fbdf90b62f2bc (patch)
tree9e43efbf602b10e7ab3566ec1dd0cb2846200181
parent30b5040b9ab015c4d64206b4ce482917a151a395 (diff)
downloadgnulib-8e2cc070abdfaaae0cbb390ddb0fbdf90b62f2bc.tar.gz
(savedir): Change type of name_size parameter to off_t.
-rw-r--r--lib/savedir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/savedir.c b/lib/savedir.c
index f720866598..31aeb9af0c 100644
--- a/lib/savedir.c
+++ b/lib/savedir.c
@@ -1,5 +1,5 @@
/* savedir.c -- save the list of files in a directory in a string
- Copyright (C) 1990, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1997, 1998, 1999 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
@@ -76,7 +76,7 @@ char *stpcpy ();
Return NULL if DIR cannot be opened or if out of memory. */
char *
-savedir (const char *dir, unsigned int name_size)
+savedir (const char *dir, off_t name_size)
{
DIR *dirp;
struct dirent *dp;
@@ -102,7 +102,7 @@ savedir (const char *dir, unsigned int name_size)
|| (dp->d_name[1] != '\0'
&& (dp->d_name[1] != '.' || dp->d_name[2] != '\0')))
{
- unsigned size_needed = (namep - name_space) + NAMLEN (dp) + 2;
+ size_t off_t = (namep - name_space) + NAMLEN (dp) + 2;
if (size_needed > name_size)
{