(svn r17682) -Codechange: remove erroneous space before some commas

This commit is contained in:
rubidium
2009-10-02 15:13:15 +00:00
parent da2fe3293c
commit ed8788d581
16 changed files with 21 additions and 21 deletions

View File

@@ -907,7 +907,7 @@ void DeterminePaths(const char *exe)
if (_config_file != NULL) {
_personal_dir = strdup(_config_file);
char *end = strrchr(_personal_dir , PATHSEPCHAR);
char *end = strrchr(_personal_dir, PATHSEPCHAR);
if (end == NULL) {
_personal_dir[0] = '\0';
} else {