summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
authorGil Elad <gilelad1@gmail.com>2014-04-15 21:36:09 (GMT)
committerGil Elad <gilelad1@gmail.com>2014-04-15 21:36:09 (GMT)
commit1bd2e38a2ce2d0823557381c48fe47cb53d6fba8 (patch)
treed852a1f42f77e1ce04930ed41a564a0c54fe14cc /src/dot.cpp
parent385b87e08c23b1392d0e6d6fbdb6ef463fa28477 (diff)
downloadDoxygen-1bd2e38a2ce2d0823557381c48fe47cb53d6fba8.zip
Doxygen-1bd2e38a2ce2d0823557381c48fe47cb53d6fba8.tar.gz
Doxygen-1bd2e38a2ce2d0823557381c48fe47cb53d6fba8.tar.bz2
Fix segfault on invalid bounding FIG when patching dot
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index a1540af..051a438 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -1102,7 +1102,7 @@ bool DotFilePatcher::run()
}
else // error invalid map id!
{
- err("Found invalid bounding FIG id in file %s!\n",mapId,m_patchFile.data());
+ err("Found invalid bounding FIG %d in file %s!\n",mapId,m_patchFile.data());
t << line;
}
}