2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>

* python/py-breakpoint (struct pybp_code):  Use int instead of
	enum type_code.
This commit is contained in:
Tom Tromey 2013-02-15 17:12:29 +00:00
parent 088f7bb95c
commit e81b7af881
2 changed files with 6 additions and 1 deletions

View 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>

View 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. */