Skip to content
Snippets Groups Projects
Commit 3894c7f1 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch HEAD

Fix print format warning.
b=15981
parent 77cf6a50
No related merge requests found
...@@ -2281,7 +2281,7 @@ int jt_blockdev_info(int argc, char **argv) ...@@ -2281,7 +2281,7 @@ int jt_blockdev_info(int argc, char **argv)
if (ino == 0ULL) if (ino == 0ULL)
fprintf(stdout, "Not attached\n"); fprintf(stdout, "Not attached\n");
else else
fprintf(stdout, "attached to inode %llu\n", ino); fprintf(stdout, "attached to inode "LPU64"\n", ino);
out: out:
close(fd); close(fd);
return -rc; return -rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment