Skip to content

Commit bd26a9b

Browse files
committed
style: format sqlite3_nif for clang-format
1 parent 5c0a69e commit bd26a9b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

c_src/sqlite3_nif.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,10 +481,10 @@ exqlite_open(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
481481
memset(conn->authorizer_deny, 0, sizeof(conn->authorizer_deny));
482482

483483
// Initialize busy handler fields
484-
conn->cancelled = 0;
485-
conn->busy_timeout_ms = 2000; // default matches sqlite3_busy_timeout(db, 2000)
484+
conn->cancelled = 0;
485+
conn->busy_timeout_ms = 2000; // default matches sqlite3_busy_timeout(db, 2000)
486486
conn->progress_handler_steps = 1000;
487-
conn->callback_env = NULL;
487+
conn->callback_env = NULL;
488488

489489
conn->interrupt_mutex = enif_mutex_create("exqlite:interrupt");
490490
if (conn->interrupt_mutex == NULL) {

0 commit comments

Comments
 (0)