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

Define the sqliteMalloc() macro differently to avoid a compiler warning. (CVS 2809)

FossilOrigin-Name: 3d177bde71811391f79f4ab3bae054ef1bceb6a0
This commit is contained in:
danielk1977
2005-12-09 14:39:04 +00:00
parent 2e588c7525
commit 97cb2e969b
6 changed files with 32 additions and 21 deletions

View File

@ -11,7 +11,7 @@
# This file implements some common TCL routines used for regression
# testing the SQLite library
#
# $Id: tester.tcl,v 1.53 2005/12/09 14:25:12 danielk1977 Exp $
# $Id: tester.tcl,v 1.54 2005/12/09 14:39:05 danielk1977 Exp $
# Make sure tclsqlite3 was compiled correctly. Abort now with an
# error message if not.
@ -145,7 +145,9 @@ proc finalize_testing {} {
catch {db2 close}
catch {db3 close}
pp_check_for_leaks
catch {
pp_check_for_leaks
}
puts "$nErr errors out of $nTest tests"
puts "Failures on these tests: $::failList"