summaryrefslogtreecommitdiffstats
path: root/man_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-12-31 23:23:10 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-12-31 23:23:10 +0000
commit8165032a586fb8d32ff25ec7340db91a5568e604 (patch)
tree12fb3a063e97fce5041017ce1e096a75ccc6dc11 /man_macro.c
parent00a83eb67618ef2d3d4efc692882efa3dc6252ca (diff)
downloadmandoc-8165032a586fb8d32ff25ec7340db91a5568e604.tar.gz
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c
index d10514b9..bcfdcc55 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -438,7 +438,7 @@ in_line_eoln(MACRO_PROT_ARGS)
*/
if (n != man->last &&
- mandoc_eos(man->last->string, strlen(man->last->string), 0))
+ mandoc_eos(man->last->string, strlen(man->last->string)))
man->last->flags |= MAN_EOS;
/*