From 323d7432010ca0ec468eff1c308fc9c03db63c97 Mon Sep 17 00:00:00 2001 From: mccallum Date: Fri, 4 Aug 1995 19:31:05 +0000 Subject: [PATCH] (debug_memory_stream): Turn debugging off by default. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@526 72102866-910b-0410-8b05-ffd578937521 --- Source/MemoryStream.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MemoryStream.m b/Source/MemoryStream.m index 104a45aed..496e5cd43 100644 --- a/Source/MemoryStream.m +++ b/Source/MemoryStream.m @@ -61,7 +61,7 @@ objects_vscanf (void *stream, void (*unchar_func)(void*,int), const char *format, va_list argptr); -static BOOL debug_memory_stream = YES; +static BOOL debug_memory_stream = NO; /* A pretty stupid implementation based on realloc(), but it works for now. */