diff options
author | Albert <albert.tests@gmail.com> | 2013-11-10 18:34:08 (GMT) |
---|---|---|
committer | Albert <albert.tests@gmail.com> | 2013-11-10 18:34:08 (GMT) |
commit | 4aff91909eaee47b3463427e6c3c2ef7005aed19 (patch) | |
tree | 9d5aa920dfa5acf2e67b4188521f135c27de6e9a /src/doxygen.cpp | |
parent | 7cda115a6830bf816a094e37c498e5a50ce1b29c (diff) | |
download | Doxygen-4aff91909eaee47b3463427e6c3c2ef7005aed19.zip Doxygen-4aff91909eaee47b3463427e6c3c2ef7005aed19.tar.gz Doxygen-4aff91909eaee47b3463427e6c3c2ef7005aed19.tar.bz2 |
Space missing in error message.
the word 'in' and the vale of filesOption were concatenated
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 6f9a8bf..c2dfa71 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -9145,7 +9145,7 @@ static void copyExtraFiles(const QCString& filesOption,const QCString &outputOpt QFileInfo fi(fileName); if (!fi.exists()) { - err("Extra file '%s' specified in" + filesOption + " does not exist!\n", fileName.data()); + err("Extra file '%s' specified in " + filesOption + " does not exist!\n", fileName.data()); } else { |