summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 7127e9a..9899c79 100755
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1722,7 +1722,7 @@ QCString removeRedundantWhiteSpace(const QCString &s)
char c;
char pc=0;
// skip leading whitespace
- while (i<l && isspace(src[i]))
+ while (i<l && isspace((uchar)src[i]))
{
i++;
}