summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-03-10 10:33:35 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-03-10 10:33:35 (GMT)
commit8f614d75fe9b1fdcb91384a1296c76514a06d70b (patch)
treed8c5a7fbdc7e43bcc5106c3206cf852828dd8713 /src/util.cpp
parent208c689e4c13cc065045a6f6b1ff685eda5a3cd6 (diff)
downloadDoxygen-8f614d75fe9b1fdcb91384a1296c76514a06d70b.zip
Doxygen-8f614d75fe9b1fdcb91384a1296c76514a06d70b.tar.gz
Doxygen-8f614d75fe9b1fdcb91384a1296c76514a06d70b.tar.bz2
Fixed a few compiler warnings on win32
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 1c05423..f92df68 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1707,7 +1707,7 @@ QCString removeRedundantWhiteSpace(const QCString &s)
// improve the performance of this function
static char *growBuf = 0;
static int growBufLen = 0;
- if (s.length()*3>growBufLen) // For input character we produce at most 3 output characters,
+ if ((int)s.length()*3>growBufLen) // For input character we produce at most 3 output characters,
{
growBufLen = s.length()*3;
growBuf = (char *)realloc(growBuf,growBufLen+1); // add 1 for 0-terminator