diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-11-22 19:14:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-11-22 19:14:22 (GMT) |
commit | a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d (patch) | |
tree | 6866141d1950d3734c42714bcf38a989321747b8 | |
parent | 903cf7cad0e2a1c0e22537621a770544fa4e84ee (diff) | |
download | Doxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.zip Doxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.tar.gz Doxygen-a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d.tar.bz2 |
Fix compile problem
-rw-r--r-- | addon/configgen/configgen.cpp | 2 |
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'; |