Commit d5fffb38 authored by David S. Miller's avatar David S. Miller

fs/jfs/resize.c:jfs_extendfs {u,s}64 is not necessarily a long long.

parent b2d607f6
......@@ -314,7 +314,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
if (mapSize > t64) {
printk(KERN_ERR
"jfs_extendfs: mapSize (0x%llx) > t64 (0x%llx)\n",
mapSize, t64);
(long long) mapSize, (long long) t64);
rc = EIO;
goto error_out;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment