From 75fb9e28e682000b89c60a7981e49a329712dbba Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Mon, 21 Aug 2017 20:07:19 +0900 Subject: [PATCH] Fix an parameter unmatch error which would cause a crash. --- convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert.c b/convert.c index e76cadb..d8dfbaf 100644 --- a/convert.c +++ b/convert.c @@ -5578,7 +5578,7 @@ MYLOG(0, FORMAT_LEN "-" FORMAT_LEN " num=%s SQL_BIT=%d\n", to, from, num, SQL_BI { qb->errornumber = STMT_EXEC_ERROR; qb->errormsg = "param not found"; - qlog("%s %dth param not found for the expression %s\n", pidx + 1, mapExpr); + qlog("%dth param not found for the expression %s\n", pidx + 1, mapExpr); retval = SQL_ERROR; break; } -- 2.39.5