From: Nick Clifton Date: Tue, 27 Mar 2001 17:23:47 +0000 (+0000) Subject: Add missing double quote X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=397b41add9155101df173e651248f754c6f7b5a9;p=binutils-gdb.git Add missing double quote --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4c77b43a6df..5c6d03eeeb0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-03-27 Nick Clifton + + * remote-rdp.c (rdp_set_command_line): Add missing double quote. + 2001-03-27 Kevin Buettner * solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c index 1c9b3c38503..573e080ce9f 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