diff options
author | Alan Modra <amodra@gmail.com> | 2020-03-19 11:47:45 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-03-19 11:55:04 +1030 |
commit | 645ba68105ee79511a79386811dd932be8becafa (patch) | |
tree | 0b468c2eda06836c06d8daf56df43ac60c5bda25 /binutils/elfcomm.h | |
parent | cdf236890ce1a8f44d24841d888728f9feb38c44 (diff) | |
download | gdb-645ba68105ee79511a79386811dd932be8becafa.zip gdb-645ba68105ee79511a79386811dd932be8becafa.tar.gz gdb-645ba68105ee79511a79386811dd932be8becafa.tar.bz2 |
setup_archive parameter mismatch
* elfcomm.c (setup_archive): Make file_size an off_t. Comment.
* elfcomm.h (setup_archive): Update prototype.
Diffstat (limited to 'binutils/elfcomm.h')
-rw-r--r-- | binutils/elfcomm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/elfcomm.h b/binutils/elfcomm.h index 731d3db..8d962f2 100644 --- a/binutils/elfcomm.h +++ b/binutils/elfcomm.h @@ -74,7 +74,7 @@ extern char *adjust_relative_path (const char *, const char *, unsigned long); /* Read the symbol table and long-name table from an archive. */ extern int setup_archive (struct archive_info *, const char *, FILE *, - bfd_size_type, bfd_boolean, bfd_boolean); + off_t, bfd_boolean, bfd_boolean); /* Open and setup a nested archive, if not already open. */ extern int setup_nested_archive (struct archive_info *, const char *); |