summaryrefslogtreecommitdiff
path: root/string_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'string_utils.c')
-rw-r--r--string_utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/string_utils.c b/string_utils.c
index 77765d2..7fba9bb 100644
--- a/string_utils.c
+++ b/string_utils.c
@@ -155,12 +155,12 @@ gchar* conditional_regex_replace (gboolean do_it, gchar* in_string, gchar* regex
gchar *out;
if (do_it) {
- GRegex *regex = g_regex_new (regex_string, 0, 0, NULL);
- out = g_regex_replace_literal (regex, in_string, -1, 0, replace_with, 0, NULL);
- g_regex_unref (regex);
+ GRegex *regex = g_regex_new (regex_string, 0, 0, NULL);
+ out = g_regex_replace_literal (regex, in_string, -1, 0, replace_with, 0, NULL);
+ g_regex_unref (regex);
} else {
out = g_strdup (in_string);
}
- return out;
+ return out;
}