diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-09-01 19:18:14 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-09-01 19:18:14 +0000 |
commit | 6033ef452b1d12c9b76d7bb1a8c485fa3cb49a3b (patch) | |
tree | d09378419c32414769c5c3084aab958cfccbfd42 /app/fvwm/libs | |
parent | bb9b1841fd718e29b3eca2aa61bb3e2472f3af08 (diff) |
Remove extra semi-colon after conditional. Tested by phessler@.
Diffstat (limited to 'app/fvwm/libs')
-rw-r--r-- | app/fvwm/libs/Parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |