From: Jim Meyering Date: Sat, 20 May 2000 15:37:26 +0000 (+0000) Subject: add format args to match new %lu directives X-Git-Tag: FILEUTILS-4_0s~5 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=8f8938e366fe7cfee4cf428e2d3c719991013bbf;p=thirdparty%2Fcoreutils.git add format args to match new %lu directives --- diff --git a/src/remove.c b/src/remove.c index 593feba1c9..28fee4d51f 100644 --- a/src/remove.c +++ b/src/remove.c @@ -745,7 +745,9 @@ numbers %lu/%lu, but now (after a chdir into it), the numbers for `.'\n\ are %lu/%lu. That means that while rm was running, the directory\n\ was replaced with either another directory or a link to another directory."), full_filename (dir_name), + (unsigned long)(fs->st_dev), (unsigned long)(fs->st_ino), + (unsigned long)(sb.st_dev), (unsigned long)(sb.st_ino)); } }