From 05bb6f87daccddfe18bdc5bbf19c33ed22e2b660 Mon Sep 17 00:00:00 2001 From: adilger <adilger> Date: Mon, 26 May 2008 19:46:10 +0000 Subject: [PATCH] Branch HEAD Fix compile warning for printf. --- lustre/fid/fid_store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/fid/fid_store.c b/lustre/fid/fid_store.c index b208e595cf..773a6229e0 100644 --- a/lustre/fid/fid_store.c +++ b/lustre/fid/fid_store.c @@ -133,10 +133,10 @@ int seq_store_read(struct lu_server_seq *seq, rc = -ENODATA; } else if (rc >= 0) { CERROR("%s: Read only %d bytes of %d\n", seq->lss_name, - rc, sizeof(info->sti_space)); + rc, (int)sizeof(info->sti_space)); rc = -EIO; } - + RETURN(rc); } -- GitLab