From: Jim Meyering Date: Thu, 30 Nov 2000 09:35:52 +0000 (+0000) Subject: (dir_name_r): Fix typo: int -> size_t. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbbfa79c3f7327e1359af33e833c9d078ba52ff1;p=pspp (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)