* symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.

* utils.c (gnu_debuglink_crc32): Remove.
	* utils.h (gnu_debuglink_crc32): Don't declare.
This commit is contained in:
Tom Tromey
2013-01-30 20:38:04 +00:00
parent 7d45515218
commit 3bff1ecdba
4 changed files with 7 additions and 75 deletions

View File

@@ -1358,7 +1358,7 @@ get_file_crc (bfd *abfd, unsigned long *file_crc_return)
}
if (count == 0)
break;
file_crc = gnu_debuglink_crc32 (file_crc, buffer, count);
file_crc = bfd_calc_gnu_debuglink_crc32 (file_crc, buffer, count);
}
*file_crc_return = file_crc;