mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:18:24 +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)
|
while (fgets(line, LINE_MAX, settingsFile) != NULL)
|
||||||
{
|
{
|
||||||
if (strcmp(line, " \n") > 0) {
|
if (strcmp(line, " \n") > 0) {
|
||||||
char *token = NULL;
|
char* token = NULL;
|
||||||
char *settingLine = NULL;
|
char* settingLine = NULL;
|
||||||
char *toFree = NULL;
|
char* toFree = NULL;
|
||||||
|
|
||||||
settingLine = strdup(line);
|
settingLine = strdup(line);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue