1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Fixing INVARIANTS build by adding 'z' format prefix for size_t typed

variable.

Reminded by:	tinderbox
This commit is contained in:
Tai-hwa Liang 2008-08-29 08:44:51 +00:00
parent 02a1ebb4e3
commit 2bc01c3a32
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182437

View File

@ -894,7 +894,7 @@ michael_mic(struct tkip_ctx *ctx, const u8 *key,
* do then we'll need more involved logic.
*/
KASSERT(data_len <= space,
("not enough data, data_len %u space %u\n", data_len, space));
("not enough data, data_len %zu space %u\n", data_len, space));
/* Last block and padding (0x5a, 4..7 x 0) */
switch (data_len) {