commit 8386335f6bf3cfe5cfea74c8650f01cd19ce995f
parent 5a4f5d4e5879f3116149f0a2e859cd28a30e33f6
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 {