From 356503ed3b44e8178b039421f9cf73b4f3aee06f Mon Sep 17 00:00:00 2001 From: Nathan R Date: Fri, 30 Jul 2021 16:27:50 +0200 Subject: [PATCH] little correction --- scope.c | 1 - 1 file changed, 1 deletion(-) diff --git a/scope.c b/scope.c index 94d45b9..936d529 100644 --- a/scope.c +++ b/scope.c @@ -110,7 +110,6 @@ int popScope() { int isTypedefed(char *s) { /** Latest scopes prevail */ - if (scopeStack->scopeList == NULL) printf("null"); for (int i = scopeStack->stackSize ; i != 0 ; i--) { scope_t* scope = malloc(sizeof(scopeStack->scopeList[i])); scope = scopeStack->scopeList[i];