From a48439992d4b1c896dd0beaff91d0a14361032b9 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sun, 10 Feb 2019 16:47:23 -0500 Subject: 10.9 --- zen/zstring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 zen/zstring.cpp (limited to 'zen/zstring.cpp') diff --git a/zen/zstring.cpp b/zen/zstring.cpp old mode 100755 new mode 100644 index f8a34045..62a0caef --- a/zen/zstring.cpp +++ b/zen/zstring.cpp @@ -57,7 +57,7 @@ Zstring getUnicodeNormalForm(const Zstring& str) // const char* precomposed = "\xc3\xb3"; try { - gchar* outStr = ::g_utf8_normalize (str.c_str(), str.length(), G_NORMALIZE_DEFAULT_COMPOSE); + 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")"); ZEN_ON_SCOPE_EXIT(::g_free(outStr)); -- cgit