aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-01-26 19:23:33 +0000
committerdrh <drh@noemail.net>2007-01-26 19:23:33 +0000
commit485f00391b61db30aead76b51ab2fb7074101567 (patch)
treec781b595018f4aa647b17c67929cbf2e16bd26e5 /src/printf.c
parent0ee5a1e763edd6133130d2e7b4d471aa9dead12f (diff)
downloadsqlite-485f00391b61db30aead76b51ab2fb7074101567.tar.gz
sqlite-485f00391b61db30aead76b51ab2fb7074101567.zip
Add code to select.c for printing the contents of parse-tree structures.
The code is normally omitted. You must compile with -DSQLITE_TEST or -DSQLITE_DEBUG to enable it. (CVS 3606) FossilOrigin-Name: 1b26d6875612a0ed25d6e293f005ea4966692759
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index b4c37fb61..a05fec21f 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -857,7 +857,7 @@ void sqlite3DebugPrintf(const char *zFormat, ...){
va_start(ap, zFormat);
base_vprintf(0, 0, zBuf, sizeof(zBuf), zFormat, ap);
va_end(ap);
- fprintf(stdout,"%d: %s", getpid(), zBuf);
+ fprintf(stdout,"%s", zBuf);
fflush(stdout);
}
#endif