summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-11-22 19:14:22 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-11-22 19:14:22 (GMT)
commit8d286928c79339b6d315ef7a024fffdbf3bcc85d (patch)
tree6866141d1950d3734c42714bcf38a989321747b8
parentf769c300f488c8ab450622701dcebee19e2dc332 (diff)
downloadDoxygen-8d286928c79339b6d315ef7a024fffdbf3bcc85d.zip
Doxygen-8d286928c79339b6d315ef7a024fffdbf3bcc85d.tar.gz
Doxygen-8d286928c79339b6d315ef7a024fffdbf3bcc85d.tar.bz2
Fix compile problem
-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';