1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-05 04:30:38 +03:00

Improvements to the debugging code. (CVS 1979)

FossilOrigin-Name: bdc3bb070f7f29713b7bb9a6454a7ecbee6cf36d
This commit is contained in:
drh
2004-09-24 19:39:26 +00:00
parent 3b584fa6c5
commit 59c98a6f2b
4 changed files with 10 additions and 10 deletions

View File

@@ -814,7 +814,7 @@ void sqlite3DebugPrintf(const char *zFormat, ...){
va_start(ap, zFormat);
base_vprintf(0, 0, zBuf, sizeof(zBuf), zFormat, ap);
va_end(ap);
fprintf(stdout,"%s", zBuf);
fprintf(stdout,"%d: %s", getpid(), zBuf);
fflush(stdout);
}
#endif