summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2009-05-21 00:03:09 +0000
committerMonty <xiphmont@xiph.org>2009-05-21 00:03:09 +0000
commit449bb13d1e274466d324b2949d8e6281fc2ac910 (patch)
treea85d375d55f77900f8c399d4a43aeee1791feb15 /src
parent23c6a02ac82e3d5736173e2224ff9cc083fc5a52 (diff)
downloadogg-git-449bb13d1e274466d324b2949d8e6281fc2ac910.tar.gz
Correct a typo in the new oggpackB_writecheck that would have caused a
stack overflow. svn path=/trunk/ogg/; revision=16022
Diffstat (limited to 'src')
-rw-r--r--src/bitwise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitwise.c b/src/bitwise.c
index 25cf862..4c88df5 100644
--- a/src/bitwise.c
+++ b/src/bitwise.c
@@ -53,7 +53,7 @@ int oggpack_writecheck(oggpack_buffer *b){
}
int oggpackB_writecheck(oggpack_buffer *b){
- return oggpackB_writecheck(b);
+ return oggpack_writecheck(b);
}
void oggpack_writetrunc(oggpack_buffer *b,long bits){