aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2001-12-13 11:14:28 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2001-12-13 11:14:28 +0000
commit40ec4d938eecb7b5ab0d23be69f1771e94486a4b (patch)
tree4480fcdd0751cbff93dcec536161141d40303e01
parent19f0fedd94f7f629c1fa6e3393b53caf51f4876c (diff)
downloadsrc-40ec4d938eecb7b5ab0d23be69f1771e94486a4b.tar.gz
src-40ec4d938eecb7b5ab0d23be69f1771e94486a4b.zip
Use ANSI C string contatenation instead of a multi-line string literal.
Reported by: gcc30
Notes
Notes: svn path=/head/; revision=87797
-rw-r--r--sys/dev/buslogic/bt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c
index 80bd3b260b3b..94e6971e25ee 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