From 6bee4ed0c1f247cd2b88ac15fc85945bd6a4d176 Mon Sep 17 00:00:00 2001 From: "Andries E. Brouwer" Date: Thu, 25 Sep 2003 14:33:35 -0700 Subject: [PATCH] [PATCH] compilation fix for test-parsing.c An extra semicolon results in an empty statement, causing the "declaration after statement" problem. Newer versions of gcc will silently accept it, but older versions won't. --- test-parsing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-parsing.c b/test-parsing.c index d777b013..e4134483 100644 --- a/test-parsing.c +++ b/test-parsing.c @@ -31,7 +31,7 @@ static void clean_up_symbol(struct symbol *sym, void *_parent, int flags) int main(int argc, char **argv) { int fd; - char *filename = NULL, **args;; + char *filename = NULL, **args; struct token *token; // Initialize symbol stream first, so that we can add defines etc -- 2.11.4.GIT