From cc67f780ecdb8a5c50eaae9e04b7fc11ce23ddba Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 18 Jan 2023 20:14:54 -0500 Subject: sim: info: convert verbose field to a bool The verbose argument has always been an int treated as a bool, so convert it to an explicit bool. Further, update the API docs to match the reality that the verbose value is actually used by some of the internal modules. --- sim/rx/gdb-if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sim/rx') diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c index 5e2ad2f..a2b9218 100644 --- a/sim/rx/gdb-if.c +++ b/sim/rx/gdb-if.c @@ -644,7 +644,7 @@ sim_store_register (SIM_DESC sd, int regno, const void *buf, int length) } void -sim_info (SIM_DESC sd, int verbose) +sim_info (SIM_DESC sd, bool verbose) { check_desc (sd); -- cgit v1.1