diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2011-04-27 12:04:42 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2011-04-27 12:04:42 +0000 |
commit | f6d903988c5983e2882e3448dc1a059ef4c888a4 (patch) | |
tree | f500655e8f501e530af64263de1d6af6d88bb5d7 /gdb | |
parent | 8d3788bd590aa066f4f8383b7f8da20211e4ea9e (diff) | |
download | gdb-f6d903988c5983e2882e3448dc1a059ef4c888a4.zip gdb-f6d903988c5983e2882e3448dc1a059ef4c888a4.tar.gz gdb-f6d903988c5983e2882e3448dc1a059ef4c888a4.tar.bz2 |
* python/py-breakpoint.c (gdbpy_breakpoint_created): Fix
compilation.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/python/py-breakpoint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 13014b9..7f77310 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-04-27 Vladimir Prus <vladimir@codesourcery.com> + * python/py-breakpoint.c (gdbpy_breakpoint_created): Fix + compilation. + +2011-04-27 Vladimir Prus <vladimir@codesourcery.com> + MI breakpoint notifications. * annotate.c (breakpoint_changed): Adjust parameter type. diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 39578f1..9c33848 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -787,7 +787,7 @@ gdbpy_breakpoint_created (struct breakpoint *bp) breakpoint_object *newbp; PyGILState_STATE state; - if (num < 0 && bppy_pending_object == NULL) + if (bp->number < 0 && bppy_pending_object == NULL) return; if (bp->type != bp_breakpoint |