From: adilger Date: Tue, 8 Jul 2008 18:10:55 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_50~244 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=f5ec7eefce6c3b650912eef0540a5d25f1a35a65;p=fs%2Flustre-release.git Branch HEAD Quiet compiler warning due to printf format. b=15981 --- diff --git a/lustre/mdc/mdc_request.c b/lustre/mdc/mdc_request.c index f17e571..a7e26db 100644 --- a/lustre/mdc/mdc_request.c +++ b/lustre/mdc/mdc_request.c @@ -542,7 +542,7 @@ int mdc_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req, if (rc < sizeof(*md->mea)) { CDEBUG(D_INFO, "size too small: " "rc < sizeof(*md->mea) (%d < %d)\n", - rc, sizeof(*md->mea)); + rc, (int)sizeof(*md->mea)); GOTO(out, rc = -EPROTO); } }