Date: Wed, 2 Apr 2014 23:07:15 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264058 - head/sys/dev/iscsi Message-ID: <201404022307.s32N7FpZ025932@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404022307.s32N7FpZ025932>