]> Git Repo - binutils.git/commitdiff
Add missing double quote
authorNick Clifton <[email protected]>
Tue, 27 Mar 2001 17:23:47 +0000 (17:23 +0000)
committerNick Clifton <[email protected]>
Tue, 27 Mar 2001 17:23:47 +0000 (17:23 +0000)
gdb/ChangeLog
gdb/remote-rdp.c

index 4c77b43a6df68e408ba7251e1614ee8ab83fe24e..5c6d03eeeb00ecc678fe2b5d8211f68c7e1e8c0b 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-27  Nick Clifton  <[email protected]>
+
+       * remote-rdp.c (rdp_set_command_line): Add missing double quote.
+
 2001-03-27  Kevin Buettner  <[email protected]>
 
        * solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
index 1c9b3c385032abba1bd3358b941fa5b31095330a..573e080ce9f1024ad189150a885813755974e553 100644 (file)
@@ -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
This page took 0.034083 seconds and 4 git commands to generate.