Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
commitbac85366e31b7588be0720f0a8ba2985859dd22f (patch)
treec15aa15b8da90a48414c2458cc96e6666db92282 /src/remmina_ssh_plugin.c
parentcc31dbceceaa353f95752486e0ba9765836cd601 (diff)
Using curly double quotes where possible
Diffstat (limited to 'src/remmina_ssh_plugin.c')
-rw-r--r--src/remmina_ssh_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina_ssh_plugin.c b/src/remmina_ssh_plugin.c
index e73545a7d..4d63a5c8f 100644
--- a/src/remmina_ssh_plugin.c
+++ b/src/remmina_ssh_plugin.c
@@ -577,7 +577,7 @@ static void jit_regex(VteRegex* regex, char const* pattern)
if (!vte_regex_jit(regex, PCRE2_JIT_COMPLETE, &error) ||
!vte_regex_jit(regex, PCRE2_JIT_PARTIAL_SOFT, &error)) {
if (!g_error_matches(error, VTE_REGEX_ERROR, -45 /* PCRE2_ERROR_JIT_BADOPTION: JIT not supported */))
- REMMINA_DEBUG("JITing regex \"%s\" failed: %s\n", pattern, error->message);
+ REMMINA_DEBUG("JITing regex ā€œ%sā€ failed: %s\n", pattern, error->message);
}
}