summaryrefslogtreecommitdiff
path: root/zen/zstring.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2020-03-20 22:40:40 +0000
committerDaniel Wilhelm <shieldwed@outlook.com>2020-03-20 22:40:40 +0000
commit7a3869712e5c23b8e5e17ece4cbbf3d5909de5a6 (patch)
treea43b1c04f9947fe02d7d5444354f0176c28ed594 /zen/zstring.cpp
parentMerge branch '10.21' into 'master' (diff)
parentadd upstream 10.22 (diff)
downloadFreeFileSync-7a3869712e5c23b8e5e17ece4cbbf3d5909de5a6.tar.gz
FreeFileSync-7a3869712e5c23b8e5e17ece4cbbf3d5909de5a6.tar.bz2
FreeFileSync-7a3869712e5c23b8e5e17ece4cbbf3d5909de5a6.zip
Merge branch '10.22' into 'master'10.22
add upstream 10.22 See merge request opensource-tracking/FreeFileSync!19
Diffstat (limited to 'zen/zstring.cpp')
-rw-r--r--zen/zstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/zstring.cpp b/zen/zstring.cpp
index 046a3bd4..82082df0 100644
--- a/zen/zstring.cpp
+++ b/zen/zstring.cpp
@@ -59,7 +59,7 @@ Zstring getUnicodeNormalForm(const Zstring& str)
{
gchar* outStr = ::g_utf8_normalize(str.c_str(), str.length(), G_NORMALIZE_DEFAULT_COMPOSE);
if (!outStr)
- throw SysError(L"g_utf8_normalize: conversion failed. (" + utfTo<std::wstring>(str) + L")");
+ throw SysError(L"g_utf8_normalize: conversion failed. (" + utfTo<std::wstring>(str) + L')');
ZEN_ON_SCOPE_EXIT(::g_free(outStr));
return outStr;
bgstack15