diff options
author | drh <drh@noemail.net> | 2007-12-08 17:55:35 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-12-08 17:55:35 +0000 |
commit | bed8e7e565681a11866925c2785551a443f55432 (patch) | |
tree | 3ad1887e6475517a69120e3a970f69a4e9ed49f1 /src/printf.c | |
parent | b6a75606ed995f51626c1d0f542f5f0377e1adea (diff) | |
download | sqlite-bed8e7e565681a11866925c2785551a443f55432.tar.gz sqlite-bed8e7e565681a11866925c2785551a443f55432.zip |
Fix a bug in the debugging printf logic. (CVS 4600)
FossilOrigin-Name: 1d6a9f5fafb862fb31c8589fa118a5672bad6abd
Diffstat (limited to 'src/printf.c')
-rw-r--r-- | src/printf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/printf.c b/src/printf.c index 260b3c226..2558c07c5 100644 --- a/src/printf.c +++ b/src/printf.c @@ -884,6 +884,7 @@ void sqlite3DebugPrintf(const char *zFormat, ...){ va_start(ap,zFormat); vxprintf(&acc, 0, zFormat, ap); va_end(ap); + sqlite3StrAccumFinish(&acc); fprintf(stdout,"%s", zBuf); fflush(stdout); } |