changeset 29719:5784a4c18ebe

Fix 100l typo introduced in last commit.
author diego
date Thu, 08 Oct 2009 11:32:17 +0000
parents 7aa3b62ae7d5
children b0862375c826
files mp3lib/sr1.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mp3lib/sr1.c	Thu Oct 08 11:31:24 2009 +0000
+++ b/mp3lib/sr1.c	Thu Oct 08 11:32:17 2009 +0000
@@ -168,7 +168,7 @@
   bitindex++;
   wordpointer += (bitindex>>3);
   bitindex &= 7;
-  return (val >> 7) & 1;
+  return (rval >> 7) & 1;
 }
 
 LOCAL void set_pointer(int backstep)