diff options
Diffstat (limited to 'Source/kwsys/Registry.cxx')
-rw-r--r-- | Source/kwsys/Registry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/Registry.cxx b/Source/kwsys/Registry.cxx index e717092..43f69a6 100644 --- a/Source/kwsys/Registry.cxx +++ b/Source/kwsys/Registry.cxx @@ -798,7 +798,7 @@ kwsys_stl::string RegistryHelper::DecodeValue(const char* str) case '%': if ( *(str+1) && *(str+2) && sscanf(str+1, "%x", &val) == 1 ) { - ostr << (char)val; + ostr << static_cast<char>(val); str += 2; } else |