1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Globally replace '' with "" for empty JS strings to please C preprocessor.

FossilOrigin-Name: e92e1f42bef94a1df29f66b4111ebfde93eba3759bc5d5a9c95f714508851346
This commit is contained in:
stephan
2022-11-03 21:21:10 +00:00
parent de6186e04f
commit 4df2ab575f
8 changed files with 28 additions and 28 deletions

View File

@ -678,7 +678,7 @@ const initS11n = ()=>{
state.s11n.storeException = state.asyncS11nExceptions
? ((priority,e)=>{
if(priority<=state.asyncS11nExceptions){
state.s11n.serialize([e.name,': ',e.message].join(''));
state.s11n.serialize([e.name,': ',e.message].join(""));
}
})
: ()=>{};