diff options
Diffstat (limited to 'gdb/break-catch-throw.c')
-rw-r--r-- | gdb/break-catch-throw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c index 0da3cbf..2fea27b 100644 --- a/gdb/break-catch-throw.c +++ b/gdb/break-catch-throw.c @@ -172,7 +172,7 @@ exception_catchpoint::check_status (struct bpstat *bs) std::string type_name; this->breakpoint::check_status (bs); - if (bs->stop == 0) + if (!bs->stop) return; if (self->pattern == NULL) @@ -200,7 +200,7 @@ exception_catchpoint::check_status (struct bpstat *bs) if (name != nullptr) { if (self->pattern->exec (name, 0, NULL, 0) != 0) - bs->stop = 0; + bs->stop = false; } } |