diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-11-22 19:36:48 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-11-22 19:36:48 (GMT) |
commit | ecaf7fbfed68c23e118e564d01a405db24ca9124 (patch) | |
tree | c960d1ff580225777d131c265057ebb5f2cff965 | |
parent | a1d4a04161a0a77e0c4a0d6051dbbf544c10f58d (diff) | |
download | Doxygen-ecaf7fbfed68c23e118e564d01a405db24ca9124.zip Doxygen-ecaf7fbfed68c23e118e564d01a405db24ca9124.tar.gz Doxygen-ecaf7fbfed68c23e118e564d01a405db24ca9124.tar.bz2 |
One more fix
-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 a94d852..c6aa0f2 100644 --- a/addon/configgen/configgen.cpp +++ b/addon/configgen/configgen.cpp @@ -713,7 +713,7 @@ int main(int argc,char * argv[]) while (!ctfile.atEnd()) { int l=ctfile.readLine(buf,maxLineLen-1); - if (buf[l-2]--'\r') // remove the \r for the folks using Windows + if (buf[l-2]=='\r') // remove the \r for the folks using Windows { buf[l-2]='\n'; buf[l-1]='\r'; |