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] Adjust prototype declaration for create_internalvar_type_lazy


While doing something else, I noticed that the prototype declaration for
gdb/value.h:create_internalvar_type_lazy was not correct.  This patch
fixes this.

Checked-in:

        http://sourceware.org/ml/gdb-cvs/2013-08/msg00060.html

-- 
Sergio

Index: gdb/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.15888
diff -u -r1.15888 ChangeLog
--- gdb/ChangeLog	13 Aug 2013 16:05:23 -0000	1.15888
+++ gdb/ChangeLog	13 Aug 2013 19:23:58 -0000
@@ -1,3 +1,8 @@
+2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+	* value.h (create_internalvar_type_lazy): Adjust prototype
+	declaration.
+
 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
 
 	* common/format.c (parse_format_string): Don't allow '#' flag for
Index: gdb/value.h
===================================================================
RCS file: /cvs/src/src/gdb/value.h,v
retrieving revision 1.223
diff -u -r1.223 value.h
--- gdb/value.h	2 Aug 2013 16:41:08 -0000	1.223
+++ gdb/value.h	13 Aug 2013 19:23:58 -0000
@@ -813,10 +813,9 @@
   void (*destroy) (void *data);
 };
 
-extern struct internalvar *
-create_internalvar_type_lazy (const char *name,
-			      const struct internalvar_funcs *funcs,
-			      void *data);
+extern struct internalvar *create_internalvar_type_lazy (const char *name,
+				const struct internalvar_funcs *funcs,
+				void *data);
 
 /* Compile an internal variable to an agent expression.  VAR is the
    variable to compile; EXPR and VALUE are the agent expression we are


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