diff options
author | stephan <stephan@noemail.net> | 2025-03-08 06:53:06 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-03-08 06:53:06 +0000 |
commit | 065c0a612039ca264e7b7f3bfc40409ca3b2c06d (patch) | |
tree | a74383f4944b523e52246c38aea6af9fa050e600 /tool | |
parent | 7b9407af9037776d7bb3dc4ae50fa92875dabf2e (diff) | |
download | sqlite-065c0a612039ca264e7b7f3bfc40409ca3b2c06d.tar.gz sqlite-065c0a612039ca264e7b7f3bfc40409ca3b2c06d.zip |
Test app/script patches from Jan Nijtmans for cygwin. Add/replace many more sentinel arguments for TCL variadic functions which specifically need a NULL trailing argument. With this, 'make test' on cygwin runs to completion for me, with 134 of 329227 tests failing. MSC build fails the same 13 tests which fail for me in trunk.
FossilOrigin-Name: 84d8fcfca19cd183d05a702d0eb1742bfae462d3383a3db72741a48cefac1058
Diffstat (limited to 'tool')
-rw-r--r-- | tool/sqlite3_analyzer.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sqlite3_analyzer.c.in b/tool/sqlite3_analyzer.c.in index 9c11752b8..5aef4639b 100644 --- a/tool/sqlite3_analyzer.c.in +++ b/tool/sqlite3_analyzer.c.in @@ -55,7 +55,7 @@ static int subst_puts( }else if( strcmp(zArg, "-nonewline")==0 ){ addNewLine = 0; }else{ - Tcl_AppendResult(interp, "bad argument: ", zArg, 0); + Tcl_AppendResult(interp, "bad argument: ", zArg, NULL); return TCL_ERROR; } } |