From 88e1cf580e3c0bba2de12c00ff05a671016539a9 Mon Sep 17 00:00:00 2001 From: Youngjae Cho Date: Thu, 27 Feb 2020 17:23:35 +0900 Subject: [PATCH] coverity: Fix coverity issue Fix wrong paraters for format specifier. Change-Id: I59933e132f285437d26d25761dd8f7c31bcfc486 Signed-off-by: Youngjae Cho --- src/toolbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toolbox.c b/src/toolbox.c index 607247b..4db0e9a 100644 --- a/src/toolbox.c +++ b/src/toolbox.c @@ -389,7 +389,7 @@ static int putcb(struct parsing *parsing, conferr("line %d: reserved variable name '%.*s'\n" "..: %.*s\n..: %*s\n", here.lino, (int)lname, name, - here.lino, (int)here.length, here.begin, here.colno, "^"); + (int)here.length, here.begin, here.colno, "^"); errcount++; dependant = 0; -- 2.7.4