diff options
author | Tom Tromey <tromey@redhat.com> | 2013-02-15 17:12:29 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-02-15 17:12:29 +0000 |
commit | e81b7af881a2f2533634f46c1cb4e43930dc3945 (patch) | |
tree | 7a234800d5334c797de8590534310389a2e58acf /gdb/python/py-breakpoint.c | |
parent | 088f7bb95c7a7c0491039d43970c2ad39ff1d8e1 (diff) | |
download | gdb-e81b7af881a2f2533634f46c1cb4e43930dc3945.zip gdb-e81b7af881a2f2533634f46c1cb4e43930dc3945.tar.gz gdb-e81b7af881a2f2533634f46c1cb4e43930dc3945.tar.bz2 |
2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
* python/py-breakpoint (struct pybp_code): Use int instead of
enum type_code.
Diffstat (limited to 'gdb/python/py-breakpoint.c')
-rw-r--r-- | gdb/python/py-breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 078ae16..5e5f9b3 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. */ |