diff options
author | albert-github <albert.tests@gmail.com> | 2020-09-04 11:33:43 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-09-04 11:33:43 (GMT) |
commit | e1f55871fa67b5d88330a45b4b7d06ac492f0266 (patch) | |
tree | b569ae4b57434527f91b820d37d6075b9a47078b /src | |
parent | e1d10844790b1f8386eada1ea73960b16e6bc440 (diff) | |
download | Doxygen-e1f55871fa67b5d88330a45b4b7d06ac492f0266.zip Doxygen-e1f55871fa67b5d88330a45b4b7d06ac492f0266.tar.gz Doxygen-e1f55871fa67b5d88330a45b4b7d06ac492f0266.tar.bz2 |
Readability of warning message
A warning like:
```
warning: source examples is not a readable file or directory... skipping.
```
is hard to understand, would be better to have:
```
warning: source 'examples' is not a readable file or directory... skipping.
```
Diffstat (limited to 'src')
-rw-r--r-- | src/doxygen.cpp | 4 |
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()) |