Add missing parenthesis
authorYao Qi <yao@codesourcery.com>
Sat, 15 Nov 2014 07:52:04 +0000 (15:52 +0800)
committerYao Qi <yao@codesourcery.com>
Sat, 15 Nov 2014 09:04:30 +0000 (17:04 +0800)
One parenthesis is missing, and it causes a compilation error.  This
patch is to fix it.

gdb:

2014-11-15  Yao Qi  <yao@codesourcery.com>

* go32-nat.c (go32_create_inferior): Add missing parenthesis.

gdb/ChangeLog
gdb/go32-nat.c

index 0ba42399c18952cf69e65d76c782651f3af24b1a..3b9ba33032d506b02a1769edddb479510dee10e3 100644 (file)
@@ -1,3 +1,7 @@
+2014-11-15  Yao Qi  <yao@codesourcery.com>
+
+       * go32-nat.c (go32_create_inferior): Add missing parenthesis.
+
 2014-11-14  Joel Brobecker  <brobecker@adacore.com>
 
        * common/common-defs.h: Move <stdarg.h> #include ahead of
index 8f59426afdaf69db56ac90f0d61f542c9d2f6223..a8b8c3ce5d595e676fb43af20d567c711c589758 100644 (file)
@@ -696,7 +696,7 @@ go32_create_inferior (struct target_ops *ops, char *exec_file,
   xfree (cmdline);
 
   if (result != 0)
-    error (_("Load failed for image %s", exec_file);
+    error (_("Load failed for image %s"), exec_file);
 
   edi_init (start_state);
 #if __DJGPP_MINOR__ < 3
This page took 0.030521 seconds and 4 git commands to generate.