diff --git a/src/modules/wmtheme.c b/src/modules/wmtheme.c index ee30d45ff..9959d985b 100644 --- a/src/modules/wmtheme.c +++ b/src/modules/wmtheme.c @@ -49,11 +49,11 @@ static void printWMThemeFromConfigFile(FFinstance* instance, const char* configF uint32_t idx = 0; idx = ffStrbufFirstIndexS(&theme, "qml_"); - if((idx != theme.length)) + if(idx != theme.length) ffStrbufSubstrAfter(&theme, idx + 3); idx = ffStrbufFirstIndexS(&theme, "svg__"); - if((idx != theme.length)) + if(idx != theme.length) ffStrbufSubstrAfter(&theme, idx + 4); printWMTheme(instance, theme.chars);