aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2021-01-25 21:55:46 +0000
committerGitHub <[email protected]>2021-01-25 21:55:46 +0000
commitea9775c4f12859380d3461ae4acd794809a707ee (patch)
tree6380f13a713a34a3b749ca3b5833ef4dea6cc7af
parentFixed implicit declarations and misc warnings. (diff)
parentFixed build with ICU 68.2-1 (diff)
downloadvmime-ea9775c4f12859380d3461ae4acd794809a707ee.tar.gz
vmime-ea9775c4f12859380d3461ae4acd794809a707ee.zip
Merge pull request #249 from mpietruschka/master
You forgot about one line in "Fixed build with ICU 68.2-1"
-rw-r--r--src/vmime/charsetConverter_icu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmime/charsetConverter_icu.cpp b/src/vmime/charsetConverter_icu.cpp
index cc74be98..56394797 100644
--- a/src/vmime/charsetConverter_icu.cpp
+++ b/src/vmime/charsetConverter_icu.cpp
@@ -453,7 +453,7 @@ void charsetFilteredOutputStream_icu::writeImpl(
ucnv_fromUnicode(
m_to, &cpTarget, cpTargetLimit,
- &cpSource, cpSourceLimit, NULL, /* flush */ FALSE, &fromErr
+ &cpSource, cpSourceLimit, NULL, /* flush */ UBool(0), &fromErr
);
if (fromErr != U_BUFFER_OVERFLOW_ERROR && U_FAILURE(fromErr)) {