blob: 760ebf708d0011c38745ecb2e487f47470f08f15 (
plain)
1
2
3
4
5
6
7
8
9
10
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 ) &&
|