diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-08-15 15:36:12 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-08-15 15:36:12 +0000 |
commit | a16c7ea098fed0b4d92658c4f10d93d76bc2ec22 (patch) | |
tree | 622a4bee496bc5be67f26cdc56b6352772fbca4e /usr.bin/mandoc | |
parent | c53d02337730b21b092f2ff3b8cab7a17f1ccae1 (diff) |
fix incomplete variable renaming in previous;
found by Thomas Klausner <wiz at NetBSD> via a compiler warning
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index 737f393b01b..59e22c4b597 100644 --- a/usr.bin/mandoc/man_macro.c +++ b/usr.bin/mandoc/man_macro.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_macro.c,v 1.86 2018/08/14 01:26:12 schwarze Exp $ */ +/* $OpenBSD: man_macro.c,v 1.87 2018/08/15 15:36:11 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2012-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -254,7 +254,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); } } |