[xiph-cvs] cvs commit: speex/libspeex bits.c
Jean-Marc Valin
jm at xiph.org
Mon Nov 17 15:14:54 PST 2003
jm 03/11/17 18:14:54
Modified: libspeex Tag: rel-1-0-branch bits.c
Log:
fixed typo in warning message
Revision Changes Path
No revision
<p>No revision
<p>1.27.2.4 +2 -2 speex/libspeex/bits.c
Index: bits.c
===================================================================
RCS file: /usr/local/cvsroot/speex/libspeex/bits.c,v
retrieving revision 1.27.2.3
retrieving revision 1.27.2.4
diff -u -r1.27.2.3 -r1.27.2.4
--- bits.c 23 Aug 2003 03:11:11 -0000 1.27.2.3
+++ bits.c 17 Nov 2003 23:14:54 -0000 1.27.2.4
@@ -95,7 +95,7 @@
int i;
if (len > bits->buf_size)
{
- speex_warning_int("Packet if larger than allocated buffer: ", len);
+ speex_warning_int("Packet is larger than allocated buffer: ", len);
if (bits->owner)
{
char *tmp = (char*)speex_realloc(bits->bytes, len);
@@ -138,7 +138,7 @@
if ((bits->nbBits>>3)+len+1 > bits->buf_size)
{
- speex_warning_int("Packet if larger than allocated buffer: ", len);
+ speex_warning_int("Packet is larger than allocated buffer: ", len);
if (bits->owner)
{
char *tmp = (char*)speex_realloc(bits->bytes, (bits->nbBits>>3)+len+1);
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list