From edd488734adc3acbd38fcc84e08dedc70bde6a86 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 25 Jul 2003 08:40:49 +0000 Subject: [PATCH] (validate_path): Use %ld format (not %d) for size_t value. --- src/pathchk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pathchk.c b/src/pathchk.c index 4a8064bef..b95915289 100644 --- 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 %d; exceeds limit of %ld"), + error (0, 0, _("path `%s' has length %ld; exceeds limit of %ld"), path, strlen (path), path_max); return 1; } -- 2.34.1