quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

commit a788d13c4effd86e1d67988d00e153d8db613184
parent 4e8a4089ca1f18ac56a92b036c1a8c06fe8de05a
Author: Florian Dold <florian@dold.me>
Date:   Wed,  8 May 2024 15:18:32 +0200

-logging

Diffstat:
Mtart_module.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tart_module.c b/tart_module.c @@ -1598,7 +1598,7 @@ static JSValue js_sqlite3_open(JSContext *ctx, JSValue this_val, goto done; } - fprintf(stderr, "opening sqlite3 db at %s", filename), + fprintf(stderr, "opening sqlite3 db at %s\n", filename), ret = sqlite3_open_v2(filename, &sqlite3_db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL); if (SQLITE_OK != ret) { if (NULL == sqlite3_db) {