diff options
author | stephan <stephan@noemail.net> | 2024-09-24 00:31:08 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-09-24 00:31:08 +0000 |
commit | 405ae974eeaa99114593bb49e2d4951892adcced (patch) | |
tree | 14849c4eb56751d64d75078d00c894c5892b001c /ext/wasm/c-pp.c | |
parent | 6ed21e8fd7597a80b8815e9c4eb8064264cd87a9 (diff) | |
download | sqlite-405ae974eeaa99114593bb49e2d4951892adcced.tar.gz sqlite-405ae974eeaa99114593bb49e2d4951892adcced.zip |
Further wasm build cleanups and tweaks. No functional changes.
FossilOrigin-Name: 3b72a143431537ec275aefae739e56330c1d445c9ea80885882a2b9aa2201179
Diffstat (limited to 'ext/wasm/c-pp.c')
-rw-r--r-- | ext/wasm/c-pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/c-pp.c b/ext/wasm/c-pp.c index 6815cb845..c67881dd3 100644 --- a/ext/wasm/c-pp.c +++ b/ext/wasm/c-pp.c @@ -1508,7 +1508,7 @@ int main(int argc, char const * const * argv){ } ISFLAG("debug"){ ++g.doDebug; - }else if(!zInfile){ + }else if(!zInfile && '-'!=argv[i][0]){ goto do_infile; }else{ fatal("Unhandled flag: %s", argv[i]); |