summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/man_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2013-12-30 00:52:19 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2013-12-30 00:52:19 +0000
commit1dd47b7d214ea5025ae29b2663cc1ea1410bc094 (patch)
tree2a09267f2167447ac296d26d2454d7c35e3b2639 /usr.bin/mandoc/man_macro.c
parenta5d2021003c961f2824fc69ec05a5e5f2d6e20e0 (diff)
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r--usr.bin/mandoc/man_macro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c
index cd60c9571cb..4864f6550a6 100644
--- a/usr.bin/mandoc/man_macro.c
+++ b/usr.bin/mandoc/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.42 2013/12/25 00:50:03 schwarze Exp $ */
+/* $Id: man_macro.c,v 1.43 2013/12/30 00:52:18 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -434,7 +434,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;
/*