diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-22 19:36:48 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-22 19:36:48 (GMT) |
commit | 2f32e4c28047cdec982a818e8abe5632af2d9511 (patch) | |
tree | c960d1ff580225777d131c265057ebb5f2cff965 /addon | |
parent | 8d286928c79339b6d315ef7a024fffdbf3bcc85d (diff) | |
download | Doxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.zip Doxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.tar.gz Doxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.tar.bz2 |
One more fix
Diffstat (limited to 'addon')
-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'; |