[TRIVIAL PATCH] use size_t length specifier in mptbase.c

From: Jesse Barnes
Date: Wed Aug 11 2004 - 16:28:52 EST


Looks like mptbase.c is using offsetof but trying to use %d instead of %zd
when printing a warning. Fix it up to reduce warnings when compiling on
systems where size_t isn't 32 bits. With this patch and Alex's earlier one
to fix up some ACPI warnings applied, the sn2_defconfig target is error and
warning free.

Signed-off-by: Jesse Barnes <jbarnes@xxxxxxx>

Thanks,
Jesse
===== drivers/message/fusion/mptbase.c 1.26 vs edited =====
--- 1.26/drivers/message/fusion/mptbase.c 2004-06-26 19:26:07 -07:00
+++ edited/drivers/message/fusion/mptbase.c 2004-08-11 14:09:39 -07:00
@@ -2416,7 +2416,7 @@
}
} else {
printk(MYIOC_s_ERR_FMT
- "Invalid IOC facts reply, msgLength=%d offsetof=%d!\n",
+ "Invalid IOC facts reply, msgLength=%d offsetof=%zd!\n",
ioc->name, facts->MsgLength, (offsetof(IOCFactsReply_t,
RequestFrameSize)/sizeof(u32)));
return -66;