svn commit: r264058 - head/sys/dev/iscsi

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Apr 2 23:07:16 UTC 2014


Author: trasz
Date: Wed Apr  2 23:07:15 2014
New Revision: 264058
URL: http://svnweb.freebsd.org/changeset/base/264058

Log:
  Fix build, broken by r264025.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/dev/iscsi/icl.c

Modified: head/sys/dev/iscsi/icl.c
==============================================================================
--- head/sys/dev/iscsi/icl.c	Wed Apr  2 21:34:48 2014	(r264057)
+++ head/sys/dev/iscsi/icl.c	Wed Apr  2 23:07:15 2014	(r264058)
@@ -1048,12 +1048,12 @@ icl_conn_start(struct icl_conn *ic)
 	minspace = sizeof(struct iscsi_bhs) + ic->ic_max_data_segment_length +
 	    ISCSI_HEADER_DIGEST_SIZE + ISCSI_DATA_DIGEST_SIZE + 4;
 	if (sendspace < minspace) {
-		ICL_WARN("kern.icl.sendspace too low; must be at least %jd",
+		ICL_WARN("kern.icl.sendspace too low; must be at least %zd",
 		    minspace);
 		sendspace = minspace;
 	}
 	if (recvspace < minspace) {
-		ICL_WARN("kern.icl.recvspace too low; must be at least %jd",
+		ICL_WARN("kern.icl.recvspace too low; must be at least %zd",
 		    minspace);
 		recvspace = minspace;
 	}


More information about the svn-src-head mailing list