From 2d5aae0af7b9f35be199fdb8c84cef5b90990069 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Mon, 14 May 2001 19:34:12 +0000 Subject: [PATCH] remove debug printouts --- src/libFLAC/memory.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libFLAC/memory.c b/src/libFLAC/memory.c index 4c1640e..58eab67 100644 --- a/src/libFLAC/memory.c +++ b/src/libFLAC/memory.c @@ -18,7 +18,6 @@ */ #include -#include /*@@@ 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; -- 2.7.4