This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit/obvious] Add missing ops parameter in go32_create_inferior


I feel like I'm earning lots of brownie points, right now :-)
I found by accident that one function had its prototype changed,
but not the actual declaration...

2009-03-16  Joel Brobecker  <brobecker@adacore.com>

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

Checked in as obvious. I hope the file builds again, now.

-- 
Joel
Index: go32-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/go32-nat.c,v
retrieving revision 1.65
diff -u -p -r1.65 go32-nat.c
--- go32-nat.c	23 Feb 2009 00:03:49 -0000	1.65
+++ go32-nat.c	16 Mar 2009 18:56:20 -0000
@@ -591,7 +591,8 @@ go32_kill_inferior (void)
 }
 
 static void
-go32_create_inferior (char *exec_file, char *args, char **env, int from_tty)
+go32_create_inferior (struct target_ops *ops, char *exec_file,
+		      char *args, char **env, int from_tty)
 {
   extern char **environ;
   jmp_buf start_state;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]