mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
Fixed spacing issues per the coding standard.
This commit is contained in:
parent
fefa74135c
commit
ed904b58eb
1 changed files with 3 additions and 3 deletions
|
@ -735,9 +735,9 @@ void Application::readSettingsFile() {
|
|||
while (fgets(line, LINE_MAX, settingsFile) != NULL)
|
||||
{
|
||||
if (strcmp(line, " \n") > 0) {
|
||||
char *token = NULL;
|
||||
char *settingLine = NULL;
|
||||
char *toFree = NULL;
|
||||
char* token = NULL;
|
||||
char* settingLine = NULL;
|
||||
char* toFree = NULL;
|
||||
|
||||
settingLine = strdup(line);
|
||||
|
||||
|
|
Loading…
Reference in a new issue