diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-01-01 20:08:11 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-01-01 20:08:11 +0000 |
commit | 8467c656b08f44116581660bf45a662f6dfbc016 (patch) | |
tree | 019bdd1fe26ca25afd536d3b562b4960a1add9fb /sys/dev/isa | |
parent | 0c5d4446e0adc3af8b7821fc5a288cfff14508e6 (diff) |
remove unneded space in printf (only cosmetic)
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/pcmcia_pcic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/pcmcia_pcic.c b/sys/dev/isa/pcmcia_pcic.c index 41e95247539..097e4a9b01a 100644 --- a/sys/dev/isa/pcmcia_pcic.c +++ b/sys/dev/isa/pcmcia_pcic.c @@ -1,4 +1,4 @@ -/* $Id: pcmcia_pcic.c,v 1.10 1996/11/29 22:55:06 niklas Exp $ */ +/* $Id: pcmcia_pcic.c,v 1.11 1997/01/01 20:08:10 graichen Exp $ */ /* * Copyright (c) 1995, 1996 John T. Kohl * All rights reserved. @@ -1061,6 +1061,6 @@ pcicmaster_print(aux, name) const char *name; { if (name != NULL) - printf("%s: master controller ", name); + printf("%s: master controller", name); return UNCONF; } |