From: Jim Meyering Date: Thu, 30 Nov 2000 09:35:52 +0000 (+0000) Subject: (dir_name_r): Fix typo: int -> size_t. X-Git-Tag: TEXTUTILS-2_0_9~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7303ca25dbbcf62d4f5eff34aea1867e14e51a19;p=thirdparty%2Fcoreutils.git (dir_name_r): Fix typo: int -> size_t. --- diff --git a/lib/dirname.c b/lib/dirname.c index 8651174cad..3487015343 100644 --- a/lib/dirname.c +++ b/lib/dirname.c @@ -57,7 +57,7 @@ size_t 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)