From 61989ffbd3e363cd61bacd2ddafab4a830ae73b8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Wed, 6 Feb 2013 17:03:31 +0100
Subject: [PATCH] Fixed warning when compiling without PIKE_DEBUG.

---
 src/docode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/docode.c b/src/docode.c
index 2ddcf48bcd..dec8963503 100644
--- a/src/docode.c
+++ b/src/docode.c
@@ -615,7 +615,7 @@ static void emit_range (node *n DO_IF_DEBUG (COMMA int num_args))
 {
   struct compilation *c = THIS_COMPILATION;
   node *low = CADR (n), *high = CDDR (n);
-  int bound_types;		/* Got bogus gcc warning here. */
+  int bound_types = 0;		/* Got bogus gcc warning here. */
 
   switch (low->token) {
     case F_RANGE_FROM_BEG: bound_types = RANGE_LOW_FROM_BEG; break;
-- 
GitLab