remove debug printouts
authorJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 14 May 2001 19:34:12 +0000 (19:34 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 14 May 2001 19:34:12 +0000 (19:34 +0000)
src/libFLAC/memory.c

index 4c1640e..58eab67 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include <assert.h>
-#include <stdio.h> /*@@@ for stderr */
 #include "private/memory.h"
 
 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address)
@@ -31,7 +30,6 @@ void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address)
        /* align on 32-byte (256-bit) boundary */
        x = malloc(bytes+31);
        *aligned_address = (void*)(((unsigned)x + 31) & -32);
-fprintf(stderr, "FLAC__memory_alloc(unaligned=%p, aligned=%p)\n",x,*aligned_address);
 #else
        x = malloc(bytes);
        *aligned_address = x;