1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a formatting errror in I/O logging. (CVS 3914)

FossilOrigin-Name: 2d37687a08a7b6b3a7f77f55a7c2e29a1f8731a8
This commit is contained in:
drh
2007-05-04 12:01:02 +00:00
parent 110daac9a1
commit 126afe6b59
3 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.333 2007/05/03 17:18:37 drh Exp $
** @(#) $Id: pager.c,v 1.334 2007/05/04 12:01:03 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -2301,7 +2301,7 @@ static int syncJournal(Pager *pPager){
if( rc ) return rc;
}
PAGERTRACE2("SYNC journal of %d\n", PAGERID(pPager));
IOTRACE(("JSYNC %d\n", pPager))
IOTRACE(("JSYNC %p\n", pPager))
rc = sqlite3OsSync(pPager->jfd, pPager->full_fsync);
if( rc!=0 ) return rc;
pPager->journalStarted = 1;