* python/py-breakpoint.c (gdbpy_breakpoint_created): Fix
authorVladimir Prus <vladimir@codesourcery.com>
Wed, 27 Apr 2011 12:04:42 +0000 (12:04 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Wed, 27 Apr 2011 12:04:42 +0000 (12:04 +0000)
compilation.

gdb/ChangeLog
gdb/python/py-breakpoint.c

index 13014b9..7f77310 100644 (file)
@@ -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.
index 39578f1..9c33848 100644 (file)
@@ -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