unimportant

This commit is contained in:
Cosmin Apreutesei 2021-11-23 22:59:54 +02:00
parent 737558cf1d
commit 3bb223016d
1 changed files with 2 additions and 2 deletions

View File

@ -1176,7 +1176,7 @@ local function read_result(self, opt)
elseif bt == 'time' then
v = get_time(buf, time_format)
else
check(self, false, 'unsupported param type '..bt)
check(self, false, 'unsupported param type %s', bt)
end
else
v = null_value
@ -1358,7 +1358,7 @@ function stmt:exec(...)
elseif bt == 'time' then
set_time(buf, val)
else
check(self, false, 'unsupported param type '..bt)
check(self, false, 'unsupported param type %s', bt)
end
end
end