diff options
author | Vincent Richard <[email protected]> | 2021-01-25 21:55:46 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-25 21:55:46 +0000 |
commit | ea9775c4f12859380d3461ae4acd794809a707ee (patch) | |
tree | 6380f13a713a34a3b749ca3b5833ef4dea6cc7af | |
parent | Fixed implicit declarations and misc warnings. (diff) | |
parent | Fixed build with ICU 68.2-1 (diff) | |
download | vmime-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.cpp | 2 |
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)) { |