summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-09-06 11:55:30 (GMT)
committerGitHub <noreply@github.com>2020-09-06 11:55:30 (GMT)
commitc5379196d315e8587cb7ec5e6005c4ae21145dde (patch)
tree0b9694d524e67a0d385c271743c5791d1dc0aa8a
parent31dc634b67278db6bd6dc8b6bb698b58a05c7b40 (diff)
parente1f55871fa67b5d88330a45b4b7d06ac492f0266 (diff)
downloadDoxygen-c5379196d315e8587cb7ec5e6005c4ae21145dde.zip
Doxygen-c5379196d315e8587cb7ec5e6005c4ae21145dde.tar.gz
Doxygen-c5379196d315e8587cb7ec5e6005c4ae21145dde.tar.bz2
Merge pull request #8007 from albert-github/feature/bug_warn_read
Readability of warning message
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index d551292..b218d38 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9473,7 +9473,7 @@ static int readDir(QFileInfo *fi,
{
if (errorIfNotExist)
{
- warn_uncond("source %s is not a readable file or directory... skipping.\n",cfi->absFilePath().data());
+ warn_uncond("source '%s' is not a readable file or directory... skipping.\n",cfi->absFilePath().data());
}
}
else if (cfi->isFile() &&
@@ -9553,7 +9553,7 @@ int readFileOrDirectory(const char *s,
{
if (errorIfNotExist)
{
- warn_uncond("source %s is not a readable file or directory... skipping.\n",s);
+ warn_uncond("source '%s' is not a readable file or directory... skipping.\n",s);
}
}
else if (!Config_getBool(EXCLUDE_SYMLINKS) || !fi.isSymLink())