summaryrefslogtreecommitdiff
path: root/media-sound/mp3info/files
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/mp3info/files')
-rw-r--r--media-sound/mp3info/files/mp3info-0.8.5a-musl.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/media-sound/mp3info/files/mp3info-0.8.5a-musl.patch b/media-sound/mp3info/files/mp3info-0.8.5a-musl.patch
new file mode 100644
index 000000000000..1b190c29d61d
--- /dev/null
+++ b/media-sound/mp3info/files/mp3info-0.8.5a-musl.patch
@@ -0,0 +1,12 @@
+https://bugs.gentoo.org/717014
+--- a/mp3tech.c
++++ b/mp3tech.c
+@@ -279,7 +279,7 @@ char *header_mode(mp3header *h) {
+ }
+
+ 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 ) &&