Use ANSI C string contatenation instead of a multi-line string literal.

Reported by:	gcc30
This commit is contained in:
John Baldwin 2001-12-13 11:14:28 +00:00
parent 19f0fedd94
commit 40ec4d938e

View File

@ -931,10 +931,10 @@ bt_find_probe_range(int ioport, int *port_index, int *max_port_index)
break; break;
if ((i >= BT_NUM_ISAPORTS) if ((i >= BT_NUM_ISAPORTS)
|| (ioport != bt_isa_ports[i].addr)) { || (ioport != bt_isa_ports[i].addr)) {
printf(" printf(
bt_isa_probe: Invalid baseport of 0x%x specified. "bt_isa_probe: Invalid baseport of 0x%x specified.\n"
bt_isa_probe: Nearest valid baseport is 0x%x. "bt_isa_probe: Nearest valid baseport is 0x%x.\n"
bt_isa_probe: Failing probe.\n", "bt_isa_probe: Failing probe.\n",
ioport, ioport,
(i < BT_NUM_ISAPORTS) (i < BT_NUM_ISAPORTS)
? bt_isa_ports[i].addr ? bt_isa_ports[i].addr