diff options
author | Tom Tromey <tom@tromey.com> | 2018-09-14 07:46:55 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-09-16 06:25:17 -0600 |
commit | 752312ba4e53fea8e77ae240a35a7b508c6ca619 (patch) | |
tree | 27019e105bbc9800c5b3e1f4e61a2939fc89b704 /gdb/gdbserver/remote-utils.c | |
parent | 65e65158c50dd7e7a5fbc9dcdad9da6df31e01c4 (diff) | |
download | binutils-752312ba4e53fea8e77ae240a35a7b508c6ca619.zip binutils-752312ba4e53fea8e77ae240a35a7b508c6ca619.tar.gz binutils-752312ba4e53fea8e77ae240a35a7b508c6ca619.tar.bz2 |
Use GNU style for metasyntactic variables in gdbserver
This changes a couple of places in gdbserver to use the GNU style for
metasyntactic variables.
gdb/gdbserver/ChangeLog
2018-09-16 Tom Tromey <tom@tromey.com>
* remote-utils.c (remote_open): Use GNU style for metasyntactic
variables.
* gdbreplay.c (gdbreplay_usage): Use GNU style for metasyntactic
variables.
Diffstat (limited to 'gdb/gdbserver/remote-utils.c')
-rw-r--r-- | gdb/gdbserver/remote-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c index 38c9032..9199a9c 100644 --- a/gdb/gdbserver/remote-utils.c +++ b/gdb/gdbserver/remote-utils.c @@ -336,7 +336,7 @@ remote_open (const char *name) port_str = strchr (name, ':'); #ifdef USE_WIN32API if (port_str == NULL) - error ("Only <host>:<port> is supported on this platform."); + error ("Only HOST:PORT is supported on this platform."); #endif if (strcmp (name, STDIO_CONNECTION_NAME) == 0) |