diff options
Diffstat (limited to 'gdb/varobj.h')
-rw-r--r-- | gdb/varobj.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/varobj.h b/gdb/varobj.h index 6fe7009..8860526 100644 --- a/gdb/varobj.h +++ b/gdb/varobj.h @@ -75,7 +75,7 @@ typedef struct varobj_update_result_t It lists the new children (which must necessarily come at the end of the child list) added during an update. The caller is responsible for freeing this vector. */ - VEC (varobj_p) *new; + VEC (varobj_p) *newobj; } varobj_update_result; DEF_VEC_O (varobj_update_result); @@ -303,7 +303,7 @@ extern void all_root_varobjs (void (*func) (struct varobj *var, void *data), void *data); extern VEC(varobj_update_result) *varobj_update (struct varobj **varp, - int explicit); + int is_explicit); extern void varobj_invalidate (void); |