aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r--src/PropSet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx
index 45419bcd1..aa7423cbc 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -21,7 +21,7 @@ inline char MakeUpperCase(char ch) {
if (ch < 'a' || ch > 'z')
return ch;
else
- return ch - 'a' + 'A';
+ return static_cast<char>(ch - 'a' + 'A');
}
int CompareCaseInsensitive(const char *a, const char *b) {