diff options
Diffstat (limited to 'gdb/gdbsupport')
-rw-r--r-- | gdb/gdbsupport/common-debug.c | 2 | ||||
-rw-r--r-- | gdb/gdbsupport/common-debug.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gdbsupport/common-debug.c b/gdb/gdbsupport/common-debug.c index 97c9003..7e7e5c3 100644 --- a/gdb/gdbsupport/common-debug.c +++ b/gdb/gdbsupport/common-debug.c @@ -22,7 +22,7 @@ /* See gdbsupport/common-debug.h. */ -int show_debug_regs; +bool show_debug_regs; /* See gdbsupport/common-debug.h. */ diff --git a/gdb/gdbsupport/common-debug.h b/gdb/gdbsupport/common-debug.h index d5bfc9e..5584f09 100644 --- a/gdb/gdbsupport/common-debug.h +++ b/gdb/gdbsupport/common-debug.h @@ -20,10 +20,10 @@ #ifndef COMMON_COMMON_DEBUG_H #define COMMON_COMMON_DEBUG_H -/* Set to nonzero to enable debugging of hardware breakpoint/ +/* Set to true to enable debugging of hardware breakpoint/ watchpoint support code. */ -extern int show_debug_regs; +extern bool show_debug_regs; /* Print a formatted message to the appropriate channel for debugging output for the client. */ |