Use ANSI C string contatenation instead of a multi-line string literal.
Reported by: gcc30
This commit is contained in:
parent
19f0fedd94
commit
40ec4d938e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user