diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-15 15:37:25 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-15 15:37:25 +0000 |
commit | e094eec8b4885c7793dfc4e740d95d2b034c4384 (patch) | |
tree | 91ae77246b252d2233171ef766e8b631d151f34e /man_macro.c | |
parent | dfc70f83664eec984b05ba6b825d63ee3b113945 (diff) | |
download | mandoc-e094eec8b4885c7793dfc4e740d95d2b034c4384.tar.gz |
fix incomplete variable renaming in previous;
found by Thomas Klausner <wiz at NetBSD> via a compiler warning
Diffstat (limited to 'man_macro.c')
-rw-r--r-- | man_macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c index 22528219..ef2b95a0 100644 --- a/man_macro.c +++ b/man_macro.c @@ -256,7 +256,7 @@ blk_close(MACRO_PROT_ARGS) if (ctok == MAN_LP || ctok == MAN_PP || ctok == MAN_P) { *pos = strlen(buf); - blk_imp(man, ctok, line, ppos, pos, buf); + blk_imp(man, ctok, cline, cpos, pos, buf); } } |