summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-27 22:23:15 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-07-31 00:19:48 (GMT)
commit3d03629f20977bd137765e1d03ebbd53a349553c (patch)
tree3adba30ddc4c3aaf70987f77861ea8cd22b3b643 /Source
parent1df29567ac28b3738bf30e4aa40e95c4b155bef0 (diff)
downloadCMake-3d03629f20977bd137765e1d03ebbd53a349553c.zip
CMake-3d03629f20977bd137765e1d03ebbd53a349553c.tar.gz
CMake-3d03629f20977bd137765e1d03ebbd53a349553c.tar.bz2
cmWIXRichTextFormatWriter: remove identity cast
Diffstat (limited to 'Source')
-rw-r--r--Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx b/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx
index cef2da9..8a63239 100644
--- a/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx
+++ b/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx
@@ -182,6 +182,6 @@ void cmWIXRichTextFormatWriter::EmitUnicodeSurrogate(int c)
void cmWIXRichTextFormatWriter::EmitInvalidCodepoint(int c)
{
ControlWord("cf1 ");
- File << "[INVALID-BYTE-" << int(c) << ']';
+ File << "[INVALID-BYTE-" << c << ']';
ControlWord("cf0 ");
}