summaryrefslogtreecommitdiff
path: root/apps/codecs/lib
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-01-03 11:12:31 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-01-03 11:12:31 +0000
commit5cebdcd06b73ebf957d52b6a7a048937b146c9cd (patch)
treeadd76f949383e761edb4ba41880a7c6cae73ba08 /apps/codecs/lib
parent05778b501d7dfa0d6e55d779a577db9581774e2d (diff)
downloadrockbox-5cebdcd06b73ebf957d52b6a7a048937b146c9cd.tar.gz
rockbox-5cebdcd06b73ebf957d52b6a7a048937b146c9cd.zip
More tabs removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24157 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib')
-rw-r--r--apps/codecs/lib/codeclib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index aeae5d6369..517264f3a5 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -97,7 +97,7 @@ static inline unsigned int bs_generic(unsigned int v, int mode)
97 r &= 31; 97 r &= 31;
98 } else { 98 } else {
99 r = 31 - r; 99 r = 31 - r;
100 /* If mode is constant, this is a single conditional instruction */ 100 /* If mode is constant, this is a single conditional instruction */
101 if (mode & BS_0_0 && (signed)r < 0) 101 if (mode & BS_0_0 && (signed)r < 0)
102 r += 1; 102 r += 1;
103 } 103 }