From: Nathan Scott Date: Mon, 29 May 2006 03:53:51 +0000 (+0000) Subject: Really fix gcc warning on ia64 this time. X-Git-Tag: v2.9.0~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b43dc313c7999cb3e8340a8eb5dfd95906d7443;p=thirdparty%2Fxfsprogs-dev.git Really fix gcc warning on ia64 this time. Merge of master-melb:xfs-cmds:26061a by kenmcd. --- diff --git a/repair/init.c b/repair/init.c index fe561f635..e8dce55d6 100644 --- a/repair/init.c +++ b/repair/init.c @@ -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); } }