Adaptations for coding style

This commit is contained in:
Markus Koch 2017-02-02 19:13:30 +01:00
parent 826ee5b0e0
commit 2e1c1512be
1 changed files with 10 additions and 11 deletions

View File

@ -20,8 +20,7 @@ static gchar *mainWindow_taglist_to_string(GList *list)
gchar *ret = NULL;
GList *l;
for (l = list; l != NULL; l = l->next)
{
for (l = list; l != NULL; l = l->next) {
if (str == NULL)
str = g_string_new("");
else