diff options
author | Alan Modra <amodra@gmail.com> | 2023-04-29 10:37:28 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-05-03 14:40:49 +0930 |
commit | df2fc6fbfd8f8188b06a6dd3c8987e8c3135ec58 (patch) | |
tree | 565073f8cc33644ef1474609d5ba783ff2947ab0 /gdb/gdb_bfd.c | |
parent | e84ca83738a748d8afe53e74b9666e74ae708dcc (diff) | |
download | gdb-df2fc6fbfd8f8188b06a6dd3c8987e8c3135ec58.zip gdb-df2fc6fbfd8f8188b06a6dd3c8987e8c3135ec58.tar.gz gdb-df2fc6fbfd8f8188b06a6dd3c8987e8c3135ec58.tar.bz2 |
Change signature of bfd crc functions
The crc calculated is 32 bits. Replace uses of unsigned long with
uint32_t. Also use bfd_byte* for buffers.
bfd/
* opncls.c (bfd_calc_gnu_debuglink_crc32): Use stdint types.
(bfd_get_debug_link_info_1, bfd_get_debug_link_info): Likewise.
(separate_debug_file_exists, bfd_follow_gnu_debuglink): Likewise.
(bfd_fill_in_gnu_debuglink_section): Likewise.
* bfd-in2.h: Regenerate.
gdb/
* auto-load.c (auto_load_objfile_script): Update type of
bfd_get_debug_link_info argument.
* symfile.c (find_separate_debug_file_by_debuglink): Likewise.
* gdb_bfd.c (get_file_crc): Update type of
bfd_calc_gnu_debuglink_crc32 argument.
Diffstat (limited to 'gdb/gdb_bfd.c')
-rw-r--r-- | gdb/gdb_bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdb_bfd.c b/gdb/gdb_bfd.c index b05c782..17e454e 100644 --- a/gdb/gdb_bfd.c +++ b/gdb/gdb_bfd.c @@ -822,7 +822,7 @@ gdb_bfd_map_section (asection *sectp, bfd_size_type *size) static int get_file_crc (bfd *abfd, unsigned long *file_crc_return) { - unsigned long file_crc = 0; + uint32_t file_crc = 0; if (bfd_seek (abfd, 0, SEEK_SET) != 0) { |