summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsezero <sezero@users.sourceforge.net>2018-11-10 16:51:01 +0300
committerThomas Daede <daede003@umn.edu>2019-01-28 15:57:34 -0800
commit74556072244b743d658a1105b539bc773e3ed26f (patch)
tree7ee217ff41f65be77b092628063a1120c9083242
parentc8e0bf6620499100402ddd823c1dc07d339808a0 (diff)
downloadlibvorbis-git-74556072244b743d658a1105b539bc773e3ed26f.tar.gz
fix typo introduced in commit 8d73daa
-rw-r--r--lib/sharedbook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sharedbook.c b/lib/sharedbook.c
index 3c93d2d6..3e04b66e 100644
--- a/lib/sharedbook.c
+++ b/lib/sharedbook.c
@@ -68,7 +68,7 @@ float _float32_unpack(long val){
exp=63;
}
if (exp<-63){
- exp-63;
+ exp=-63;
}
return(ldexp(mant,exp));
}