From 690ce2ee67ae7b62772ac42f54c2c4df976bbbd0 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sat, 1 Nov 2014 06:03:13 +0000 Subject: Use struct buf in libroff, it is very natural there and reduces the number of arguments of many functions. While here, sprinkle some KNF. No functional change. --- read.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'read.c') diff --git a/read.c b/read.c index 22070231..5bd5de57 100644 --- a/read.c +++ b/read.c @@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.95 2014/11/01 04:08:43 schwarze Exp $ */ +/* $Id: read.c,v 1.96 2014/11/01 06:03:13 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2014 Ingo Schwarze @@ -493,8 +493,7 @@ mparse_buf_r(struct mparse *curp, struct buf blk, size_t i, int start) [curp->secondary->sz] = '\0'; } rerun: - rr = roff_parseln(curp->roff, curp->line, - &ln.buf, &ln.sz, of, &of); + rr = roff_parseln(curp->roff, curp->line, &ln, &of); switch (rr) { case ROFF_REPARSE: -- cgit v1.2.3