From 4833177c808ba412589e7cbdea70a99b578f4b6e Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Tue, 22 Jul 2003 01:35:27 +0200
Subject: [PATCH] Disabled a debug printout of errors that are of object type.

Rev: src/error.c:1.110
---
 src/error.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/error.c b/src/error.c
index a21e462f22..6746b4622f 100644
--- a/src/error.c
+++ b/src/error.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: error.c,v 1.109 2003/07/16 11:48:35 mast Exp $
+|| $Id: error.c,v 1.110 2003/07/21 23:35:27 mast Exp $
 */
 
 #define NO_PIKE_SHORTHAND
@@ -23,7 +23,7 @@
 #include "threads.h"
 #include "gc.h"
 
-RCSID("$Id: error.c,v 1.109 2003/07/16 11:48:35 mast Exp $");
+RCSID("$Id: error.c,v 1.110 2003/07/21 23:35:27 mast Exp $");
 
 #undef ATTRIBUTE
 #define ATTRIBUTE(X)
@@ -680,9 +680,11 @@ DECLSPEC(noreturn) void generic_error_va(struct object *o,
   }
   in_error=buf;
 
+#if 0
   if (!master_program) {
     fprintf(stderr, "ERROR: %s\n", buf);
   }
+#endif
 
   ERROR_STRUCT(generic,o)->desc=make_shared_string(buf);
   f_backtrace(0);
-- 
GitLab