summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-11-22 19:36:48 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-11-22 19:36:48 (GMT)
commit2f32e4c28047cdec982a818e8abe5632af2d9511 (patch)
treec960d1ff580225777d131c265057ebb5f2cff965
parent8d286928c79339b6d315ef7a024fffdbf3bcc85d (diff)
downloadDoxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.zip
Doxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.tar.gz
Doxygen-2f32e4c28047cdec982a818e8abe5632af2d9511.tar.bz2
One more fix
-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 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';