diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-11-19 20:18:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-11-19 20:18:32 +0000 |
commit | 22e04375877bca22b09c1fe3c4ce52e810799eeb (patch) | |
tree | c1d4b4daa0ad29354b9969dfcee5e4e73c89ad7b /gdb/remote.c | |
parent | 30c6b1fbe984d8cf5cb51f21aeef1241fd53524e (diff) | |
download | gdb-22e04375877bca22b09c1fe3c4ce52e810799eeb.zip gdb-22e04375877bca22b09c1fe3c4ce52e810799eeb.tar.gz gdb-22e04375877bca22b09c1fe3c4ce52e810799eeb.tar.bz2 |
Use ISO C long strings.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index e5b707a..bd8e68e 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2227,9 +2227,9 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target, { struct remote_state *rs = get_remote_state (); if (name == 0) - error ("To open a remote debug connection, you need to specify what\n\ -serial device is attached to the remote system\n\ -(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); + error ("To open a remote debug connection, you need to specify what\n" + "serial device is attached to the remote system\n" + "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); /* See FIXME above */ wait_forever_enabled_p = 1; @@ -2328,9 +2328,9 @@ remote_async_open_1 (char *name, int from_tty, struct target_ops *target, { struct remote_state *rs = get_remote_state (); if (name == 0) - error ("To open a remote debug connection, you need to specify what\n\ -serial device is attached to the remote system\n\ -(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); + error ("To open a remote debug connection, you need to specify what\n" + "serial device is attached to the remote system\n" + "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); target_preopen (from_tty); @@ -5437,9 +5437,8 @@ static void remote_cisco_open (char *name, int from_tty) { if (name == 0) - error ( - "To open a remote debug connection, you need to specify what \n\ -device is attached to the remote system (e.g. host:port)."); + error ("To open a remote debug connection, you need to specify what \n" + "device is attached to the remote system (e.g. host:port)."); /* See FIXME above */ wait_forever_enabled_p = 1; |