From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id ae895c5a for ; Wed, 15 Aug 2018 10:37:55 -0500 (EST) Date: Wed, 15 Aug 2018 10:37:55 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: fix incomplete variable renaming in previous; found by Thomas X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- fix incomplete variable renaming in previous; found by Thomas Klausner via a compiler warning Modified Files: -------------- mandoc: man_macro.c Revision Data ------------- Index: man_macro.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/man_macro.c,v retrieving revision 1.124 retrieving revision 1.125 diff -Lman_macro.c -Lman_macro.c -u -p -r1.124 -r1.125 --- man_macro.c +++ 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); } } -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv