aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/tui/tui-stack.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c0d4a3f..f2db9e9 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2016-06-14 John Baldwin <jhb@FreeBSD.org>
+ * tui/tui-stack.c (tui_show_frame_info): Fix type mismatch.
+
+2016-06-14 John Baldwin <jhb@FreeBSD.org>
+
* rs6000-tdep.c (ppc_process_record_op31): Initialize ra.
2016-06-13 Nick Clifton <nickc@redhat.com>
diff --git a/gdb/tui/tui-stack.c b/gdb/tui/tui-stack.c
index da6c7b1..b6cf144 100644
--- a/gdb/tui/tui-stack.c
+++ b/gdb/tui/tui-stack.c
@@ -416,7 +416,7 @@ tui_show_frame_info (struct frame_info *fi)
{
if (find_pc_partial_function (get_frame_pc (fi),
(const char **) NULL,
- &low, (CORE_ADDR) 0) == 0)
+ &low, NULL) == 0)
{
/* There is no symbol available for current PC. There is no
safe way how to "disassemble backwards". */