From: adilger Date: Mon, 26 May 2008 19:46:10 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_50~441 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=05bb6f87daccddfe18bdc5bbf19c33ed22e2b660;p=fs%2Flustre-release.git Branch HEAD Fix compile warning for printf. --- diff --git a/lustre/fid/fid_store.c b/lustre/fid/fid_store.c index b208e59..773a622 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); }