about summary refs log tree commit diff
path: root/Src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/parse.c')
-rw-r--r--Src/parse.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Src/parse.c b/Src/parse.c
index 433efb94e..4ceeb4eaf 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -2590,7 +2590,7 @@ eccopyredirs(Estate s)
 {
     Wordcode pc = s->pc;
     wordcode code = *pc;
-    int ncode, ncodes = 0, r, type;
+    int ncode, ncodes = 0, r;
 
     if (wc_code(code) != WC_REDIR)
 	return NULL;
@@ -2598,7 +2598,9 @@ eccopyredirs(Estate s)
     init_parse();
 
     while (wc_code(code) == WC_REDIR) {
-	type = WC_REDIR_TYPE(code);
+#ifdef DEBUG
+	int type = WC_REDIR_TYPE(code);
+#endif
 
 	DPUTS(type == REDIR_HEREDOC || type == REDIR_HEREDOCDASH,
 	      "unexpanded here document");