summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-11-22 19:14:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-11-22 19:14:22 (GMT)
commita1d4a04161a0a77e0c4a0d6051dbbf544c10f58d (patch)
tree6866141d1950d3734c42714bcf38a989321747b8 /addon
parent903cf7cad0e2a1c0e22537621a770544fa4e84ee (diff)
downloadDoxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.zip
Doxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.tar.gz
Doxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.tar.bz2
Fix compile problem
Diffstat (limited to 'addon')
-rw-r--r--addon/configgen/configgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp
index b9ec8f2..a94d852 100644
--- a/addon/configgen/configgen.cpp
+++ b/addon/configgen/configgen.cpp
@@ -712,7 +712,7 @@ int main(int argc,char * argv[])
// process template file
while (!ctfile.atEnd())
{
- ctfile.readLine(buf,maxLineLen-1);
+ int l=ctfile.readLine(buf,maxLineLen-1);
if (buf[l-2]--'\r') // remove the \r for the folks using Windows
{
buf[l-2]='\n';