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 573991870..5f4e20a1c 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -19,7 +19,7 @@
// The comparison and case changing functions here assume ASCII
// or extended ASCII such as the normal Windows code page.
-inline char MakeUpperCase(char ch) {
+static inline char MakeUpperCase(char ch) {
if (ch < 'a' || ch > 'z')
return ch;
else