diff options
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h index 8d73472..71546a1 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -509,7 +509,7 @@ struct target_ops int, int, int, int, int *); int (*to_has_exited) (struct target_ops *, int, int, int *); void (*to_mourn_inferior) (struct target_ops *); - int (*to_can_run) (void); + int (*to_can_run) (struct target_ops *); /* Documentation of this routine is provided with the corresponding target_* macro. */ @@ -1383,7 +1383,7 @@ void target_mourn_inferior (void); /* Does target have enough data to do a run or attach command? */ #define target_can_run(t) \ - ((t)->to_can_run) () + ((t)->to_can_run) (t) /* Set list of signals to be handled in the target. |