From 37d3442dc789d22fa802c9513c7fefbd2614b3a2 Mon Sep 17 00:00:00 2001 From: B Stack Date: Wed, 18 Mar 2020 14:13:41 -0400 Subject: add upstream 10.22 --- zen/zstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zen/zstring.cpp') 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(str) + L")"); + throw SysError(L"g_utf8_normalize: conversion failed. (" + utfTo(str) + L')'); ZEN_ON_SCOPE_EXIT(::g_free(outStr)); return outStr; -- cgit