diff options
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/target.c b/gdb/target.c index 5015e51..ebd8085 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -3144,7 +3144,7 @@ target_supports_non_stop (void) /* Implement the "info proc" command. */ -void +int target_info_proc (char *args, enum info_proc_what what) { struct target_ops *t; @@ -3167,11 +3167,11 @@ target_info_proc (char *args, enum info_proc_what what) fprintf_unfiltered (gdb_stdlog, "target_info_proc (\"%s\", %d)\n", args, what); - return; + return 1; } } - error (_("Not supported on this target.")); + return 0; } static int |