1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-15 15:06:42 +00:00

Fix previous commit. I got it backwards.

MFC after:	1 week
This commit is contained in:
Rui Paulo 2009-09-14 16:16:07 +00:00
parent e1311070b0
commit b660846ed8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197195

View File

@ -824,7 +824,7 @@ asmc_key_dump(device_t dev, int number)
type[5] = 0;
if (maxlen > sizeof(v)) {
device_printf(dev, "WARNING: cropping maxlen "
"from %u to %u\n", maxlen, sizeof(v));
"from %u to %lu\n", maxlen, sizeof(v));
maxlen = sizeof(v);
}
for (i = 0; i < sizeof(v); i++) {