diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-08-16 07:45:23 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-08-16 07:45:23 +0000 |
commit | e2e1cd5f4e244c2ac8891aa4c1ee9255400f0e33 (patch) | |
tree | 4f5a00013789054e4ff3023c6ecb0e6f589ecd61 /sys/dev/pcmcia/pcmcia.c | |
parent | 1b5fc43f5c1f7367a5b9ace732e7ae314e26c612 (diff) |
Fix typo.
Diffstat (limited to 'sys/dev/pcmcia/pcmcia.c')
-rw-r--r-- | sys/dev/pcmcia/pcmcia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/pcmcia.c b/sys/dev/pcmcia/pcmcia.c index 06dd95f5c65..afdc5c449af 100644 --- a/sys/dev/pcmcia/pcmcia.c +++ b/sys/dev/pcmcia/pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcmcia.c,v 1.21 1999/08/16 06:46:18 deraadt Exp $ */ +/* $OpenBSD: pcmcia.c,v 1.22 1999/08/16 07:45:22 fgsch Exp $ */ /* $NetBSD: pcmcia.c,v 1.9 1998/08/13 02:10:55 eeh Exp $ */ /* @@ -310,7 +310,7 @@ pcmcia_print(arg, pnp) card->manufacturer, card->product == -1 ? "" : ", "); if (card->product != -1) - printf("product 0x%lx%s", + printf("product 0x%lx", card->product); printf(")"); } |