Skip to content

Commit

Permalink
cleanup: remove always true condition to fix clang warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgs committed Nov 19, 2019
1 parent c6b097a commit 8fbfcce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/connect/inihandl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static void PROFILE_Save( FILE *file, PROFILESECTION *section )
}

for (key = section->key; key; key = key->next)
if (key->name && key->name[0]) {
if (key->name[0]) {
fprintf(file, "%s", SVP(key->name));

if (key->value)
Expand Down

0 comments on commit 8fbfcce

Please sign in to comment.