Skip to content

Commit

Permalink
Merge pull request #173 from albert-github/feature/bug_730418
Browse files Browse the repository at this point in the history
Bug 730418 - man page extension is incorrect
  • Loading branch information
Dimitri van Heesch committed May 20, 2014
2 parents 99433b3 + f25d896 commit 64f7743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mangen.cpp
Expand Up @@ -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");
}
Expand Down

0 comments on commit 64f7743

Please sign in to comment.