]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Really fix gcc warning on ia64 this time.
authorNathan Scott <nathans@sgi.com>
Mon, 29 May 2006 03:53:51 +0000 (03:53 +0000)
committerNathan Scott <nathans@sgi.com>
Mon, 29 May 2006 03:53:51 +0000 (03:53 +0000)
Merge of master-melb:xfs-cmds:26061a by kenmcd.

repair/init.c

index fe561f6359fd181ad7afcf53b22e03e7e84c7d0a..e8dce55d65d4250bb3bd8dd3e48e72ed83021987 100644 (file)
@@ -90,8 +90,8 @@ increase_rlimit(void)
                        perror("setrlimit");
                        fprintf(stderr,
                                "setrlimit failed - current: %lld, max: %lld\n",
-                               (unsigned long)rl.rlim_cur,
-                               (unsigned long)rl.rlim_max);
+                               (unsigned long long)rl.rlim_cur,
+                               (unsigned long long)rl.rlim_max);
                        exit(1);
                }
        }