summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-04-19 21:59:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-04-19 21:59:04 (GMT)
commit427476fcc1acda4905fbadcfe991a6355d969586 (patch)
tree69383eb976d36ac3e4bc1417006ccb53952ea3c9
parent27ce1cf5203ec00386835ed179e95510c89a37e3 (diff)
parent1bd2e38a2ce2d0823557381c48fe47cb53d6fba8 (diff)
downloadDoxygen-427476fcc1acda4905fbadcfe991a6355d969586.zip
Doxygen-427476fcc1acda4905fbadcfe991a6355d969586.tar.gz
Doxygen-427476fcc1acda4905fbadcfe991a6355d969586.tar.bz2
Merge pull request #152 from gilelad/master
Fix segfault on invalid bounding FIG when patching dot
-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;
}
}