summaryrefslogtreecommitdiff
path: root/tools/descramble.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/descramble.c')
-rw-r--r--tools/descramble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/descramble.c b/tools/descramble.c
index 9d45b8c0dc..3d09bfad75 100644
--- a/tools/descramble.c
+++ b/tools/descramble.c
@@ -28,7 +28,7 @@ int iaudio_decode(char *iname, char *oname);
28 28
29unsigned int le2int(unsigned char* buf) 29unsigned int le2int(unsigned char* buf)
30{ 30{
31 int32_t res = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]; 31 unsigned int res = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
32 32
33 return res; 33 return res;
34} 34}