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
commitfc06d1bfb918a6860ec4d4da5bd01dd65f7da180 (patch)
treea85d375d55f77900f8c399d4a43aeee1791feb15 /src
parent3060eb50a5f434b92321a898e3b3f88dc276ba97 (diff)
downloadogg-fc06d1bfb918a6860ec4d4da5bd01dd65f7da180.tar.gz
Correct a typo in the new oggpackB_writecheck that would have caused a
stack overflow. git-svn-id: http://svn.xiph.org/trunk/ogg@16022 0101bb08-14d6-0310-b084-bc0e0c8e3800
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){