aboutsummaryrefslogtreecommitdiff
path: root/gdb/frame.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/frame.c')
-rw-r--r--gdb/frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/frame.c b/gdb/frame.c
index 113fe8a..cc44a04 100644
--- a/gdb/frame.c
+++ b/gdb/frame.c
@@ -1655,7 +1655,7 @@ get_current_frame (void)
registers". */
if (!target_has_registers)
error (_("No registers."));
- if (!target_has_stack)
+ if (!target_has_stack ())
error (_("No stack."));
if (!target_has_memory ())
error (_("No memory."));
@@ -1692,7 +1692,7 @@ static struct frame_info *selected_frame;
bool
has_stack_frames ()
{
- if (!target_has_registers || !target_has_stack || !target_has_memory ())
+ if (!target_has_registers || !target_has_stack () || !target_has_memory ())
return false;
/* Traceframes are effectively a substitute for the live inferior. */