aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/mp3info/types.patch
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/mp3info/types.patch')
-rw-r--r--unmaintained/mp3info/types.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/unmaintained/mp3info/types.patch b/unmaintained/mp3info/types.patch
new file mode 100644
index 00000000000..760ebf708d0
--- /dev/null
+++ b/unmaintained/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 ) &&