summaryrefslogtreecommitdiff
path: root/cvorbis.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-07-04 01:22:26 +0200
committerGravatar waker <wakeroid@gmail.com>2009-07-04 01:22:26 +0200
commit83c1bb9b88ba2820d01d5585b9a7d252380581f9 (patch)
tree8da0262c0928f2d953109e240bad861952ab6465 /cvorbis.c
parentca9c87874ba542aee10995fccce2614429c2b2de (diff)
fixed SRC
Diffstat (limited to 'cvorbis.c')
-rw-r--r--cvorbis.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cvorbis.c b/cvorbis.c
index d0863d2c..7ce772e1 100644
--- a/cvorbis.c
+++ b/cvorbis.c
@@ -42,7 +42,6 @@ cvorbis_read (char *bytes, int size)
{
if (!file)
return -1;
- printf ("vorbis read %d bytes!\n", size);
for (;;)
{
// read ogg
@@ -61,10 +60,6 @@ cvorbis_read (char *bytes, int size)
size -= ret;
bytes += ret;
}
- else if (ret > size) {
- printf ("read more than requested!\n");
- break;
- }
else {
break;
}