From 3866adfc1dde58c7a89a7c5f269683407ba34f91 Mon Sep 17 00:00:00 2001
From: David Gourdelier <vida@caudium.net>
Date: Tue, 18 May 2004 12:01:48 +0200
Subject: [PATCH] Parse error fix when compiling Pike with debug.

Rev: src/constants.c:1.53
---
 src/constants.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/constants.c b/src/constants.c
index ef8e3c61dd..0f6c99124e 100644
--- a/src/constants.c
+++ b/src/constants.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: constants.c,v 1.52 2004/04/22 20:49:33 nilsson Exp $
+|| $Id: constants.c,v 1.53 2004/05/18 10:01:48 vida Exp $
 */
 
 #include "global.h"
@@ -18,7 +18,7 @@
 #include "pike_security.h"
 #include "block_alloc.h"
 
-RCSID("$Id: constants.c,v 1.52 2004/04/22 20:49:33 nilsson Exp $");
+RCSID("$Id: constants.c,v 1.53 2004/05/18 10:01:48 vida Exp $");
 
 struct mapping *builtin_constants = 0;
 
@@ -162,7 +162,7 @@ PMOD_EXPORT struct callable *quick_add_efun(const char *name, ptrdiff_t name_len
   struct pike_type *t;
   struct callable *ret;
 
-#if PIKE_DEBUG
+#ifdef PIKE_DEBUG
   if(simple_mapping_string_lookup(builtin_constants, name))
     Pike_fatal("%s added as efun more than once.\n", name);
 #endif
-- 
GitLab