Skip to content

Commit

Permalink
Update c_src/sqlite3_nif.c
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga authored Oct 14, 2024
1 parent 7e66ddd commit 837664d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_src/sqlite3_nif.c
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ exqlite_insert_all(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
ERL_NIF_TERM head, tail;

// process types
for (unsigned int i = 0; i < stmt_param_count; i++) {
for (int i = 0; i < stmt_param_count; i++) {
if (!enif_get_list_cell(env, types, &head, &tail)) {
return raise_badarg(env, types);
}
Expand Down

0 comments on commit 837664d

Please sign in to comment.