From 40ec4d938eecb7b5ab0d23be69f1771e94486a4b Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 13 Dec 2001 11:14:28 +0000 Subject: [PATCH] Use ANSI C string contatenation instead of a multi-line string literal. Reported by: gcc30 --- sys/dev/buslogic/bt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index 80bd3b260b3..94e6971e25e 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -931,10 +931,10 @@ bt_find_probe_range(int ioport, int *port_index, int *max_port_index) break; if ((i >= BT_NUM_ISAPORTS) || (ioport != bt_isa_ports[i].addr)) { - printf(" -bt_isa_probe: Invalid baseport of 0x%x specified. -bt_isa_probe: Nearest valid baseport is 0x%x. -bt_isa_probe: Failing probe.\n", + printf( +"bt_isa_probe: Invalid baseport of 0x%x specified.\n" +"bt_isa_probe: Nearest valid baseport is 0x%x.\n" +"bt_isa_probe: Failing probe.\n", ioport, (i < BT_NUM_ISAPORTS) ? bt_isa_ports[i].addr