PERFORCE change 94421 for review
Alan Cox
alc at FreeBSD.org
Sat Apr 1 21:03:36 UTC 2006
http://perforce.freebsd.org/chv.cgi?CH=94421
Change 94421 by alc at alc_home on 2006/04/01 21:03:17
IFC the correction to mpt
Affected files ...
.. //depot/projects/superpages/src/sys/dev/mpt/mpt.c#4 integrate
Differences ...
==== //depot/projects/superpages/src/sys/dev/mpt/mpt.c#4 (text+ko) ====
@@ -92,7 +92,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/sys/dev/mpt/mpt.c,v 1.24 2006/04/01 07:12:18 mjacob Exp $");
+__FBSDID("$FreeBSD: src/sys/dev/mpt/mpt.c,v 1.25 2006/04/01 19:49:55 mjacob Exp $");
#include <dev/mpt/mpt.h>
#include <dev/mpt/mpt_cam.h> /* XXX For static handler registration */
@@ -1398,11 +1398,11 @@
(hdr->Function != MPI_FUNCTION_IOC_FACTS)){
#if __FreeBSD_version >= 500000
mpt_prt(mpt, "reply length does not match message length: "
- "got %x; expected %x for function %x\n",
+ "got %x; expected %zx for function %x\n",
hdr->MsgLength << 2, reply_len << 1, hdr->Function);
#else
mpt_prt(mpt, "reply length does not match message length: "
- "got %x; expected %zx for function %x\n",
+ "got %x; expected %x for function %x\n",
hdr->MsgLength << 2, reply_len << 1, hdr->Function);
#endif
}
More information about the p4-projects
mailing list