diff options
author | stephan <stephan@noemail.net> | 2022-09-06 20:17:15 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-09-06 20:17:15 +0000 |
commit | 8fc8b5b35f8d576f784ef42c73bf498aa12505a2 (patch) | |
tree | 2d659a615c4e091619d4a2d5358027e092260fd7 /ext/wasm/api/sqlite3-wasm.c | |
parent | 100b496dd28f62ff12f650c0eaf4827674c5e537 (diff) | |
download | sqlite-8fc8b5b35f8d576f784ef42c73bf498aa12505a2.tar.gz sqlite-8fc8b5b35f8d576f784ef42c73bf498aa12505a2.zip |
Get speedtest1.js working with WASMFS/OPFS.
FossilOrigin-Name: 40e60f570d4f489d58d12e27c1c067b41d6c5a5e374c5fce0baa8881ef183216
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index 070282b8e..cea6dffa1 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -473,7 +473,7 @@ int sqlite3_wasm_init_opfs(const char *zMountPoint){ hypothetically suffice for the transient wasm-based virtual filesystem we're currently running in. */ const int rc = wasmfs_create_directory(zMountPoint, 0777, pOpfs); - emscripten_console_logf("OPFS mkdir rc=%d", rc); + emscripten_console_logf("OPFS mkdir(%s) rc=%d", zMountPoint, rc); if(rc) return SQLITE_IOERR; } return pOpfs ? 0 : SQLITE_NOMEM; |