projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b595cc6
)
(validate_path): Use %lu, not %ld.
author
Jim Meyering
<jim@meyering.net>
Sun, 27 Jul 2003 06:45:25 +0000
(06:45 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sun, 27 Jul 2003 06:45:25 +0000
(06:45 +0000)
src/pathchk.c
patch
|
blob
|
history
diff --git
a/src/pathchk.c
b/src/pathchk.c
index 8bfdd359fd285a0bd525109bf5ab9d13e557a84e..f296272247a6b7212a737a2d3a5c9ee953b92305 100644
(file)
--- a/
src/pathchk.c
+++ b/
src/pathchk.c
@@
-373,7
+373,7
@@
validate_path (char *path, int portability)
free (parent);
if (strlen (path) > (size_t) path_max)
{
- error (0, 0, _("path `%s' has length %l
d
; exceeds limit of %ld"),
+ error (0, 0, _("path `%s' has length %l
u
; exceeds limit of %ld"),
path, (unsigned long) strlen (path), path_max);
return 1;
}