1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix for Win32: The %p format on Win32 does not prepend a "0x" as it should. (CVS 665)

FossilOrigin-Name: ee86704daf184307fe98b5631f22ceb3d701afce
This commit is contained in:
drh
2002-07-07 17:12:36 +00:00
parent 193a6b4142
commit 5e5377fb80
4 changed files with 16 additions and 10 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test3.c,v 1.16 2002/07/06 16:32:15 drh Exp $
** $Id: test3.c,v 1.17 2002/07/07 17:12:36 drh Exp $
*/
#include "sqliteInt.h"
#include "pager.h"
@@ -73,6 +73,9 @@ static int btree_open(
return TCL_ERROR;
}
sprintf(zBuf,"%p", pBt);
if( strncmp(zBuf,"0x",2) ){
sprintf(zBuf, "0x%p", pBt);
}
Tcl_AppendResult(interp, zBuf, 0);
return TCL_OK;
}