diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2006-02-14 18:45:14 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2006-02-14 18:45:14 +0000 |
commit | 96c1eda247c7846f4bbd32d65db6819baefad08b (patch) | |
tree | 9bc74063c6c31a5947f17bf6da9c2b5c54d76434 /gdb/varobj.c | |
parent | 92dd43fa3bc92e0a97408eaa406143c41460581c (diff) | |
download | gdb-96c1eda247c7846f4bbd32d65db6819baefad08b.zip gdb-96c1eda247c7846f4bbd32d65db6819baefad08b.tar.gz gdb-96c1eda247c7846f4bbd32d65db6819baefad08b.tar.bz2 |
* doublest.h (DOUBLEST): Use long double only if we can scan
it in. Undefine HAVE_LONG_DOUBLE otherwise.
(DOUBLEST_FORMAT): New.
* c-exp.y (parse_number): Use it.
* jv-exp.y (parse_number): Likewise.
* objc-exp.y (parse_number): Likewise.
* p-exp.y (parse_number): Likewise.
* varobj.c (free_variable): Silence type-punning warnings.
* tui/tui-data.h (struct tui_list): Change type of list member.
* tui/tui-data.c: Remove no-longer-needed type casts.
(source_windows): Silence type-punning warnings.
* tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Likewise.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index c4e4309..d4c1fbf 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -1374,7 +1374,7 @@ free_variable (struct varobj *var) /* Free the expression if this is a root variable. */ if (var->root->rootvar == var) { - free_current_contents ((char **) &var->root->exp); + free_current_contents (&var->root->exp); xfree (var->root); } |