From: Youngjae Cho Date: Thu, 27 Feb 2020 08:23:35 +0000 (+0900) Subject: coverity: Fix coverity issue X-Git-Tag: accepted/tizen/6.0/unified/20201030.114215^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_6.0_hotfix;p=platform%2Fcore%2Fsystem%2Ftizen-platform-config.git coverity: Fix coverity issue Fix wrong paraters for format specifier. Change-Id: I59933e132f285437d26d25761dd8f7c31bcfc486 Signed-off-by: Youngjae Cho --- 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;