projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e6fc5c
)
(dir_name_r): Fix typo: int -> size_t.
author
Jim Meyering
<jim@meyering.net>
Thu, 30 Nov 2000 09:35:52 +0000
(09:35 +0000)
committer
Jim Meyering
<jim@meyering.net>
Thu, 30 Nov 2000 09:35:52 +0000
(09:35 +0000)
lib/dirname.c
patch
|
blob
|
history
diff --git
a/lib/dirname.c
b/lib/dirname.c
index 8651174cada8f627707ecc221d9b4364b2d9d845..3487015343dc0c890294470a7dbf4faccde2663f 100644
(file)
--- 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)