diff options
author | drh <drh@noemail.net> | 2013-04-01 22:42:48 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-04-01 22:42:48 +0000 |
commit | 3861f546e3f3752cdce48fb75e37da7394aba882 (patch) | |
tree | 42fb3b3113a70c2357c3cf4215058c3295d7f5f0 /src/os_unix.c | |
parent | a1f42c7c32b7326568305f64cf5c592910928a3e (diff) | |
download | sqlite-3861f546e3f3752cdce48fb75e37da7394aba882.tar.gz sqlite-3861f546e3f3752cdce48fb75e37da7394aba882.zip |
Remove a debugging printf() accidently left in the previous check-in.
FossilOrigin-Name: 8198cdd8ac5dcc1c677fffa869ac965186b96abf
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index c10841abf..e92c7cc4a 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3711,7 +3711,6 @@ static int unixFileControl(sqlite3_file *id, int op, void *pArg){ } case SQLITE_FCNTL_MMAP_LIMIT: { pFile->mmapLimit = *(i64*)pArg; -printf("MMAP-LIMIT(%s) -> %lld\n", pFile->zPath, pFile->mmapLimit); return SQLITE_OK; } #ifdef SQLITE_DEBUG |