From 73033f12d9e126f3ee6659cf2522455d7bac0236 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Tue, 13 Aug 2013 19:25:04 +0000 Subject: [PATCH] Adjusting prototype declaration for gdb/value.h:create_internalvar_type_lazy, in order to match GNU Coding Standards. 2013-08-13 Sergio Durigan Junior * value.h (create_internalvar_type_lazy): Adjust prototype declaration. --- gdb/ChangeLog | 5 +++++ gdb/value.h | 7 +++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 99fa18b6d8..5de1fbb531 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-08-13 Sergio Durigan Junior + + * value.h (create_internalvar_type_lazy): Adjust prototype + declaration. + 2013-08-13 Andrew Burgess * common/format.c (parse_format_string): Don't allow '#' flag for diff --git a/gdb/value.h b/gdb/value.h index 599850e5f0..bef193c86a 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -813,10 +813,9 @@ struct internalvar_funcs 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 -- 2.34.1