commit 5708f64867944e0a7eab1f6666828dcc4d34d91e
parent dc7dfb44b11da99cee879e25f9075cb816638d4f
Author: Colin Leroy <colin@colino.net>
Date: Sat, 6 Oct 2018 13:04:16 +0200
Fix indent, sorry.
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/matcher.c b/src/matcher.c
@@ -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 {