(validate_path): Use %lu, not %ld.
authorJim Meyering <jim@meyering.net>
Sun, 27 Jul 2003 06:45:25 +0000 (06:45 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 27 Jul 2003 06:45:25 +0000 (06:45 +0000)
src/pathchk.c

index 8bfdd359fd285a0bd525109bf5ab9d13e557a84e..f296272247a6b7212a737a2d3a5c9ee953b92305 100644 (file)
@@ -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 %ld; exceeds limit of %ld"),
+      error (0, 0, _("path `%s' has length %lu; exceeds limit of %ld"),
             path, (unsigned long) strlen (path), path_max);
       return 1;
     }