2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
authorTom Tromey <tromey@redhat.com>
Fri, 15 Feb 2013 17:12:29 +0000 (17:12 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 15 Feb 2013 17:12:29 +0000 (17:12 +0000)
* python/py-breakpoint (struct pybp_code):  Use int instead of
enum type_code.

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

index 2bdab56de1760616325a3bccfe99ffc3fff65126..d5211b507201aa3c90cd988af45404f132827646 100644 (file)
@@ -1,3 +1,8 @@
+2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
+
+       * python/py-breakpoint (struct pybp_code):  Use int instead of
+       enum type_code.
+
 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
            Hafiz Abid Qadeer  <abidh@codesourcery.com>
 
index 078ae16bbd268efa02613180d1ca38d5387d515c..5e5f9b33a1593dd2863d2beaace6f22967ed1eac 100644 (file)
@@ -48,7 +48,7 @@ struct pybp_code
   /* The name.  */
   const char *name;
   /* The code.  */
-  enum type_code code;
+  int code;
 };
 
 /* Entries related to the type of user set breakpoints.  */
This page took 0.025619 seconds and 4 git commands to generate.