diff options
author | Nick Clifton <nickc@redhat.com> | 2001-03-27 17:23:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-03-27 17:23:47 +0000 |
commit | 397b41add9155101df173e651248f754c6f7b5a9 (patch) | |
tree | 016b089be1179ed7efb41476ecc71d3e30b7505c /gdb | |
parent | ed817e6830609fe4ea2cf4c1f5060f6180b016c9 (diff) | |
download | gdb-397b41add9155101df173e651248f754c6f7b5a9.zip gdb-397b41add9155101df173e651248f754c6f7b5a9.tar.gz gdb-397b41add9155101df173e651248f754c6f7b5a9.tar.bz2 |
Add missing double quote
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote-rdp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4c77b43..5c6d03e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-03-27 Nick Clifton <nickc@redhat.com> + + * remote-rdp.c (rdp_set_command_line): Add missing double quote. + 2001-03-27 Kevin Buettner <kevinb@redhat.com> * solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c index 1c9b3c3..573e080 100644 --- a/gdb/remote-rdp.c +++ b/gdb/remote-rdp.c @@ -699,7 +699,7 @@ rdp_set_command_line (char *command, char *args) if (commandline != NULL) xfree (commandline); - xasprintf (&commandline, %s %s", command, args); + xasprintf (&commandline, "%s %s", command, args); } static void |