From cf52c70d524fbc12adbd6e474c121fedc3c62e82 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Wed, 20 May 2015 11:29:59 +0200 Subject: testing/mp3info: fix build on musl --- testing/mp3info/types.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 testing/mp3info/types.patch (limited to 'testing/mp3info/types.patch') diff --git a/testing/mp3info/types.patch b/testing/mp3info/types.patch new file mode 100644 index 0000000000..760ebf708d --- /dev/null +++ b/testing/mp3info/types.patch @@ -0,0 +1,11 @@ +--- ./mp3tech.c.orig ++++ ./mp3tech.c +@@ -279,7 +279,7 @@ + } + + int sameConstant(mp3header *h1, mp3header *h2) { +- if((*(uint*)h1) == (*(uint*)h2)) return 1; ++ if((*(unsigned int*)h1) == (*(unsigned int*)h2)) return 1; + + if((h1->version == h2->version ) && + (h1->layer == h2->layer ) && -- cgit v1.2.3