diff options
author | stephan <stephan@noemail.net> | 2022-08-10 13:22:44 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-08-10 13:22:44 +0000 |
commit | 2315e834632fcdc9f0be844b7ef379a8fe704ab7 (patch) | |
tree | ef83be003bbff85a3bd1df5935b38dbc3f072f73 /ext/wasm/api/sqlite3-wasm.c | |
parent | 3961b2636329819f16b1f32739274f3a1d3273de (diff) | |
download | sqlite-2315e834632fcdc9f0be844b7ef379a8fe704ab7.tar.gz sqlite-2315e834632fcdc9f0be844b7ef379a8fe704ab7.zip |
wasm opfs: error handling fix for an impossible-to-reach error case. Minor cosmetic tweaks in the wasm JSON enum.
FossilOrigin-Name: 683a3b937e608a5ecaf7f63f054e8a63179d67c8b2348bf843e5e68f27a369f5
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index c27dad56f..506eaf66e 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -213,8 +213,7 @@ const char * sqlite3_wasm_enum_json(void){ DefGroup(blobFinalizers) { /* SQLITE_STATIC/TRANSIENT need to be handled explicitly as ** integers to avoid casting-related warnings. */ - out("\"SQLITE_STATIC\":0, " - "\"SQLITE_TRANSIENT\":-1"); + out("\"SQLITE_STATIC\":0, \"SQLITE_TRANSIENT\":-1"); } _DefGroup; DefGroup(udfFlags) { @@ -312,8 +311,8 @@ const char * sqlite3_wasm_enum_json(void){ ** } ** } ** - ** Detailed documentation for those bits are in an external - ** file (StackBinder.md, as of this writing). + ** Detailed documentation for those bits are in the docs for the + ** Jaccwabyt JS-side component. */ /** Macros for emitting StructBinder description. */ |