diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2bdab56de1..d5211b5072 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-02-15 Sanimir Agovic + + * python/py-breakpoint (struct pybp_code): Use int instead of + enum type_code. + 2013-02-15 Pedro Alves Hafiz Abid Qadeer diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 078ae16bbd..5e5f9b33a1 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -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. */