From 3894c7f10ecb000f31ee338e1600b11b765e2f4f Mon Sep 17 00:00:00 2001
From: adilger <adilger>
Date: Tue, 8 Jul 2008 21:11:19 +0000
Subject: [PATCH] Branch HEAD Fix print format warning. b=15981

---
 lustre/utils/obd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lustre/utils/obd.c b/lustre/utils/obd.c
index 8c9a2abd0f..85464ed8fc 100644
--- a/lustre/utils/obd.c
+++ b/lustre/utils/obd.c
@@ -2281,7 +2281,7 @@ int jt_blockdev_info(int argc, char **argv)
         if (ino == 0ULL)
                 fprintf(stdout, "Not attached\n");
         else
-                fprintf(stdout, "attached to inode %llu\n", ino);
+                fprintf(stdout, "attached to inode "LPU64"\n", ino);
 out:
         close(fd);
         return -rc;
-- 
GitLab