summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-22 15:54:58 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-22 15:54:58 (GMT)
commit9450e98030627c38b0df37bd1d5501055c8a37f2 (patch)
tree75aa94ecfd626a8956909348523dc9898808a584 /src/commentscan.l
parent0ea72fdd522e6bc3bc442e7d2ae40e7607546e55 (diff)
downloadDoxygen-9450e98030627c38b0df37bd1d5501055c8a37f2.zip
Doxygen-9450e98030627c38b0df37bd1d5501055c8a37f2.tar.gz
Doxygen-9450e98030627c38b0df37bd1d5501055c8a37f2.tar.bz2
Removed exitCode parameter as it is always 1
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 89a97e3..35001c3 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -327,7 +327,7 @@ class DocCmdMapper
{
if (m_map.find(p->cmdName)!=0)
{
- term(1,"DocCmdMapper: command %s already added\n",p->cmdName);
+ term("DocCmdMapper: command %s already added\n",p->cmdName);
}
Cmd *cmd = new Cmd;
cmd->func = p->handler;