summaryrefslogtreecommitdiffstats
path: root/src/dotrunner.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-04 17:01:52 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-04 17:01:52 (GMT)
commita9dc222845e49f8010c409469455e1b2d183fad0 (patch)
tree5c6a3db374d42beb091399f29f3cc7d6a4d178d8 /src/dotrunner.cpp
parent1abdec7eeeaec850067a5847c9174e99855c110b (diff)
parent3c3efc26e6b258ef2c3916f7e1b2c07254039ad4 (diff)
downloadDoxygen-a9dc222845e49f8010c409469455e1b2d183fad0.zip
Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.gz
Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.bz2
Merge branch 'feature/bug_endblock_msg' of https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
Diffstat (limited to 'src/dotrunner.cpp')
-rw-r--r--src/dotrunner.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dotrunner.cpp b/src/dotrunner.cpp
index 22a0081..3a621c7 100644
--- a/src/dotrunner.cpp
+++ b/src/dotrunner.cpp
@@ -41,7 +41,7 @@ static void checkPngResult(const char *imgName)
{
if (!(data[1]=='P' && data[2]=='N' && data[3]=='G'))
{
- err("Image `%s' produced by dot is not a valid PNG!\n"
+ err("Image '%s' produced by dot is not a valid PNG!\n"
"You should either select a different format "
"(DOT_IMAGE_FORMAT in the config file) or install a more "
"recent version of graphviz (1.7+)\n",imgName
@@ -50,13 +50,13 @@ static void checkPngResult(const char *imgName)
}
else
{
- err("Could not read image `%s' generated by dot!\n",imgName);
+ err("Could not read image '%s' generated by dot!\n",imgName);
}
fclose(f);
}
else
{
- err("Could not open image `%s' generated by dot!\n",imgName);
+ err("Could not open image '%s' generated by dot!\n",imgName);
}
}