From 52d6163acfef77f8c86f44df0b6cccf8f3c1e829 Mon Sep 17 00:00:00 2001 From: matthieu Date: Mon, 1 Sep 2008 19:18:13 +0000 Subject: [PATCH] Remove extra semi-colon after conditional. Tested by phessler@. --- app/fvwm/libs/Parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/fvwm/libs/Parse.c b/app/fvwm/libs/Parse.c index dd89c55ad..633153b21 100644 --- a/app/fvwm/libs/Parse.c +++ b/app/fvwm/libs/Parse.c @@ -215,7 +215,7 @@ void NukeToken(char **pstr) char *temp = NULL; next = GetNextToken(*pstr, &tok); - if (next != NULL); + if (next != NULL) temp = strdup(next); if (pstr && *pstr) free(*pstr);