Control: tags -1 patch upstream

On Thu, 12 Feb 2015 10:30:17 +0000 Matthias Klose <d...@debian.org> wrote:
> The package fails to build in a test rebuild on at least amd64 with
> gcc-5/g++-5, but succeeds to build with gcc-4.9/g++-4.9. The
> severity of this report may be raised before the stretch release.

Here's a patch for this. It just removes the bogus inline keyword from
bcache.c. I have no idea how the compiler was supposed to inline that
function anyway.

Thanks,
James
--- a/bcache.c
+++ b/bcache.c
@@ -115,7 +115,7 @@ static const uint64_t crc_table[256] = {
 	0x9AFCE626CE85B507ULL
 };
 
-inline uint64_t crc64(const void *_data, size_t len)
+uint64_t crc64(const void *_data, size_t len)
 {
 	uint64_t crc = 0xFFFFFFFFFFFFFFFFULL;
 	const unsigned char *data = _data;

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to