changeset 3004:877ad9371407

(dir_name_r): Fix typo: int -> size_t.
author Jim Meyering <jim@meyering.net>
date Thu, 30 Nov 2000 09:35:52 +0000
parents a13874f88827
children 9afb7ff7a232
files lib/dirname.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/dirname.c
+++ b/lib/dirname.c
@@ -57,7 +57,7 @@
 dir_name_r (const char *path, const char **result)
 {
   char *slash;
-  int length;			/* Length of result, not including NUL.  */
+  size_t length;		/* Length of result, not including NUL.  */
 
   slash = strrchr (path, '/');
   if (BACKSLASH_IS_PATH_SEPARATOR)