]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
mke2fs: Fix compile warning message
authorTheodore Ts'o <tytso@mit.edu>
Tue, 18 May 2010 00:05:13 +0000 (20:05 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 18 May 2010 03:04:39 +0000 (23:04 -0400)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
misc/mke2fs.c

index 6a5f4947439df69ef134716f1ebff0ede0c3f5a3..5843ed4ba5f6e810cff8fa419614163241241fc3 100644 (file)
@@ -1944,7 +1944,8 @@ static void mke2fs_discard_blocks(ext2_filsys fs)
                ret = ioctl(fd, BLKDISCARD, &range);
                if (verbose) {
                        printf(_("Calling BLKDISCARD from %llu to %llu "),
-                               range[0], range[1]);
+                              (unsigned long long) range[0],
+                              (unsigned long long) range[1]);
                        if (ret)
                                printf(_("failed.\n"));
                        else