From 386e9afad370c8b767de6968fd0f82e6b4b97810 Mon Sep 17 00:00:00 2001 From: dmlb Date: Mon, 7 May 2001 21:51:54 +0000 Subject: Fix a minor printing bug that prints incorrect information for memory block sizes. This orginally worked in PAO-3 and worked on their r330 branch but got broken in PAO-3 around December 1998! Approved by: imp Obtained from: PAO-3 --- usr.sbin/pccard/pccardc/printcis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/pccard/pccardc/printcis.c b/usr.sbin/pccard/pccardc/printcis.c index 70626d4..f8a53b3 100644 --- a/usr.sbin/pccard/pccardc/printcis.c +++ b/usr.sbin/pccard/pccardc/printcis.c @@ -723,7 +723,7 @@ dump_device_desc(u_char *p, int len, char *type) len--; if (*p) { printf("\t\t"); - print_ext_speed(*p++, 0); + print_ext_speed(*p, 0); while (*p & 0x80) { p++; len--; -- cgit v1.1