Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
broma0 committed Feb 8, 2024
1 parent 11205da commit 7ea55cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/santoku/sqlite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ local function query (db, stmt, ...)
elseif res == sqlite.DONE then
return
else
return error(db.db:errmsg(), db.db:errcode())
return error(db:errmsg(), db:errcode())
end
end
end
Expand All @@ -65,7 +65,7 @@ local function get_one (db, stmt, ...)
elseif res == sqlite.DONE then
return
else
return error(db.db:errmsg(), db.db:errcode())
return error(db:errmsg(), db:errcode())
end
end

Expand Down
4 changes: 2 additions & 2 deletions make.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
local env = {

name = "santoku-sqlite",
version = "0.0.9-1",
version = "0.0.10-1",
variable_prefix = "TK_SQLITE",
license = "MIT",
public = true,

dependencies = {
"lua >= 5.1",
"santoku >= 0.0.184-1",
"santoku >= 0.0.188-1",
"lsqlite3 >= 0.9.5",
},

Expand Down

0 comments on commit 7ea55cb

Please sign in to comment.