mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use ANSI C string contatenation instead of a multi-line string literal.
Reported by: gcc30
This commit is contained in:
parent
19f0fedd94
commit
40ec4d938e
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Reference in a new issue