From: adilger Date: Wed, 25 Feb 2009 05:44:25 +0000 (+0000) Subject: Branch b1_8 X-Git-Tag: v1_8_0_110~237 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=358a00a1c5f581eca5603ba3e54bed2de2c27af1;p=fs%2Flustre-release.git Branch b1_8 Fix compile warning. --- diff --git a/lustre/tests/createtest.c b/lustre/tests/createtest.c index 4b70809..e320556 100644 --- a/lustre/tests/createtest.c +++ b/lustre/tests/createtest.c @@ -96,8 +96,9 @@ int main(int argc, char *argv[]) if (i == S_IFCHR || i == S_IFBLK) { if (st.st_rdev != 0x1234) { fprintf(stderr, "%s: ERROR rdev %s: " - "%lu != 0x1234", - argv[0], name, st.st_rdev); + "%llu != 0x1234", + argv[0], name, + (unsigned long long)st.st_rdev); exit(13); } }