summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoungjae Cho <y0.cho@samsung.com>2020-02-27 17:23:35 +0900
committersanghyeok oh <sanghyeok.oh@samsung.com>2020-02-27 09:25:57 +0000
commit25478fef84adf9fd511cde25eb981bb08cde1659 (patch)
tree682be76bfef05cb0a7d065d519facf5b8dcdd7b5
parent7bdf4e9de4450823d004f910618561e50a160298 (diff)
downloadtizen-platform-config-accepted/tizen_5.5_unified_wearable_hotfix.tar.gz
tizen-platform-config-accepted/tizen_5.5_unified_wearable_hotfix.tar.bz2
tizen-platform-config-accepted/tizen_5.5_unified_wearable_hotfix.zip
Fix wrong paraters for format specifier. Change-Id: I59933e132f285437d26d25761dd8f7c31bcfc486 Signed-off-by: Youngjae Cho <y0.cho@samsung.com> (cherry picked from commit 88e1cf580e3c0bba2de12c00ff05a671016539a9)
-rw-r--r--src/toolbox.c2
1 files changed, 1 insertions, 1 deletions
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;