diff options
author | drh <drh@noemail.net> | 2007-01-26 19:23:33 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-01-26 19:23:33 +0000 |
commit | 485f00391b61db30aead76b51ab2fb7074101567 (patch) | |
tree | c781b595018f4aa647b17c67929cbf2e16bd26e5 /src/printf.c | |
parent | 0ee5a1e763edd6133130d2e7b4d471aa9dead12f (diff) | |
download | sqlite-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.c | 2 |
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 |