diff options
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r-- | src/mangen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index cf6795b..352ef15 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -56,7 +56,7 @@ static QCString getExtension() ext = ext.mid(1); } } - if (ext.at(0)<='0' || ext.at(0)>='9') + if (ext.at(0)<'0' || ext.at(0)>'9') { ext.prepend("3"); } |