diff options
author | Simon Marchi <simark@nova.polymtl.ca> | 2015-09-26 17:15:05 -0400 |
---|---|---|
committer | Simon Marchi <simark@nova.polymtl.ca> | 2015-09-26 17:15:44 -0400 |
commit | bc84451b7af508ddd154a8793eaf0de68b7ca80a (patch) | |
tree | 151275e5222ad2a00d0b8229a436c0fb2804c22d /gdb/memory-map.c | |
parent | ba587d55a56db16e9e47d1e0975f5125fbafc6db (diff) | |
download | gdb-bc84451b7af508ddd154a8793eaf0de68b7ca80a.zip gdb-bc84451b7af508ddd154a8793eaf0de68b7ca80a.tar.gz gdb-bc84451b7af508ddd154a8793eaf0de68b7ca80a.tar.bz2 |
Fix cast of xml_find_attribute's return value
The cast auto-insert script inserted long unsigned int, but we should
use the typedef ULONGEST. Fixes build failures on i386.
gdb/ChangeLog:
* btrace.c (parse_xml_btrace_block): Fix cast of
xml_find_attribute's return value.
* memory-map.c (memory_map_start_memory): Likewise.
* solib-svr4.c (library_list_start_library): Likewise.
* solib-target.c (library_list_start_segment): Likewise.
(library_list_start_section): Likewise.
* tracepoint.c (traceframe_info_start_memory): Likewise.
Diffstat (limited to 'gdb/memory-map.c')
-rw-r--r-- | gdb/memory-map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/memory-map.c b/gdb/memory-map.c index d56b14c..3de6e9d 100644 --- a/gdb/memory-map.c +++ b/gdb/memory-map.c @@ -61,11 +61,11 @@ memory_map_start_memory (struct gdb_xml_parser *parser, ULONGEST *start_p, *length_p, *type_p; start_p - = (long unsigned int *) xml_find_attribute (attributes, "start")->value; + = (ULONGEST *) xml_find_attribute (attributes, "start")->value; length_p - = (long unsigned int *) xml_find_attribute (attributes, "length")->value; + = (ULONGEST *) xml_find_attribute (attributes, "length")->value; type_p - = (long unsigned int *) xml_find_attribute (attributes, "type")->value; + = (ULONGEST *) xml_find_attribute (attributes, "type")->value; mem_region_init (r); r->lo = *start_p; |