mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
Add missing parenthesis
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.
This commit is contained in:
parent
e88ba8d569
commit
1ada499f30
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user