diff options
Diffstat (limited to 'src/test_async.c')
-rw-r--r-- | src/test_async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_async.c b/src/test_async.c index c27507227..a6348611b 100644 --- a/src/test_async.c +++ b/src/test_async.c @@ -114,7 +114,7 @@ static void asyncTrace(const char *zFormat, ...){ z = sqlite3_vmprintf(zFormat, ap); va_end(ap); fprintf(stderr, "[%d] %s", (int)pthread_self(), z); - free(z); + sqlite3_free(z); } /* |