diff options
author | Tom Tromey <tromey@redhat.com> | 2013-10-09 15:50:39 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-10-09 15:50:39 +0000 |
commit | 6e114b15ca3feba0ab0c8ca835417f3dafa69470 (patch) | |
tree | 3f4c627695792de914e796b7437723c2c276fe06 /bfd/opncls.c | |
parent | 6d490cdb8699dbbd355cd997f52946ece306e9f7 (diff) | |
download | binutils-6e114b15ca3feba0ab0c8ca835417f3dafa69470.zip binutils-6e114b15ca3feba0ab0c8ca835417f3dafa69470.tar.gz binutils-6e114b15ca3feba0ab0c8ca835417f3dafa69470.tar.bz2 |
* opncls.c (get_alt_debug_link_info_shim): Update type of 'len'.
Diffstat (limited to 'bfd/opncls.c')
-rw-r--r-- | bfd/opncls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/opncls.c b/bfd/opncls.c index 08f6c5b..2147dee 100644 --- a/bfd/opncls.c +++ b/bfd/opncls.c @@ -1480,7 +1480,7 @@ bfd_follow_gnu_debuglink (bfd *abfd, const char *dir) static char * get_alt_debug_link_info_shim (bfd * abfd, unsigned long *crc32_out) { - size_t len; + bfd_size_type len; bfd_byte *buildid = NULL; char *result = bfd_get_alt_debug_link_info (abfd, &len, &buildid); |