]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Fix compiler warning with gcc on ia64.
authorNathan Scott <nathans@sgi.com>
Fri, 26 May 2006 04:01:34 +0000 (04:01 +0000)
committerNathan Scott <nathans@sgi.com>
Fri, 26 May 2006 04:01:34 +0000 (04:01 +0000)
Merge of master-melb:xfs-cmds:26035a by kenmcd.

repair/init.c

index aadcc44161a1be7ffefc83e0020ddead19ef937d..fe561f6359fd181ad7afcf53b22e03e7e84c7d0a 100644 (file)
@@ -89,8 +89,9 @@ increase_rlimit(void)
                if (setrlimit(RLIMIT_FSIZE, &rl) == -1) {
                        perror("setrlimit");
                        fprintf(stderr,
-                               "setrlimit Failed: current = %lld, max = %lld\n",
-                               rl.rlim_cur, rl.rlim_max);
+                               "setrlimit failed - current: %lld, max: %lld\n",
+                               (unsigned long)rl.rlim_cur,
+                               (unsigned long)rl.rlim_max);
                        exit(1);
                }
        }