summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-03-10 16:02:35 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-03-10 16:02:35 (GMT)
commit5e4af367aa86722cd1545657727247d9008e9a16 (patch)
tree6db5f7392588f3b8c9d05ab7d2651803bc00c4c1 /src/config.l
parent837e4e86e7d2735cd7106efec6e4512db82d5e7a (diff)
downloadDoxygen-5e4af367aa86722cd1545657727247d9008e9a16.zip
Doxygen-5e4af367aa86722cd1545657727247d9008e9a16.tar.gz
Doxygen-5e4af367aa86722cd1545657727247d9008e9a16.tar.bz2
Release-1.2.14-20020310
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/config.l b/src/config.l
index 810287e..fe32174 100644
--- a/src/config.l
+++ b/src/config.l
@@ -881,9 +881,10 @@ void Config::check()
if (p)
{
char c;
- while ((c=*p++))
+ while ((c=*p))
{
- if (c=='\\') c='/';
+ if (c=='\\') *p='/';
+ p++;
}
}
QCString path = sfp;