From 5f737fb4d390c040f0196a5b6f8977630c479a06 Mon Sep 17 00:00:00 2001
From: Michael Matz <matz@suse.de>
Date: Thu, 31 Jan 2019 01:04:55 +0100
Subject: [PATCH] tidy code

---
 tccgen.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tccgen.c b/tccgen.c
index 1a75aba1..0cb08324 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -6119,8 +6119,7 @@ static void block(int *bsym, int *csym, int is_expr)
         block(bsym, csym, 0);
 	if (cond != 1)
 	    nocode_wanted = saved_nocode_wanted;
-        c = tok;
-        if (c == TOK_ELSE) {
+        if (tok == TOK_ELSE) {
             next();
             d = gjmp(0);
             gsym(a);