removed that debug output again
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9488 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -93,7 +93,7 @@ ChunkCache::PutNextChunk(void *chunkBuffer, int32 chunkSize, const media_header
|
|||||||
|
|
||||||
if (err == B_OK) {
|
if (err == B_OK) {
|
||||||
if (fNextPut->sizeMax < chunkSize) {
|
if (fNextPut->sizeMax < chunkSize) {
|
||||||
printf("ChunkCache::PutNextChunk: %p resizing from %ld to %ld\n", fNextPut, fNextPut->sizeMax, chunkSize);
|
// printf("ChunkCache::PutNextChunk: %p resizing from %ld to %ld\n", fNextPut, fNextPut->sizeMax, chunkSize);
|
||||||
free(fNextPut->buffer);
|
free(fNextPut->buffer);
|
||||||
fNextPut->buffer = malloc((chunkSize + 1024) & ~1023);
|
fNextPut->buffer = malloc((chunkSize + 1024) & ~1023);
|
||||||
fNextPut->sizeMax = chunkSize;
|
fNextPut->sizeMax = chunkSize;
|
||||||
|
|||||||
Reference in New Issue
Block a user