Fix indent, sorry.

This commit is contained in:
Colin Leroy 2018-10-06 13:04:16 +02:00 committed by Andrej Kacian
parent dc7dfb44b1
commit 5708f64867

View file

@ -487,10 +487,10 @@ static gboolean matcherprop_string_match(MatcherProp *prop, const gchar *str,
if (prop->matchtype == MATCHTYPE_REGEXPCASE ||
prop->matchtype == MATCHTYPE_MATCHCASE) {
str1 = g_utf8_casefold(str, -1);
if (!prop->casefold_expr) {
prop->casefold_expr = g_utf8_casefold(prop->expr, -1);
}
down_expr = prop->casefold_expr;
if (!prop->casefold_expr) {
prop->casefold_expr = g_utf8_casefold(prop->expr, -1);
}
down_expr = prop->casefold_expr;
should_free = TRUE;
} else {