X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a2115c88f381b95cf6d423a5d3128ccbe20c4fa1..8fb3a512a85572ebf4b4f46eaf536727dfe4e01e:/src/common/dbtable.cpp diff --git a/src/common/dbtable.cpp b/src/common/dbtable.cpp index 3fab3c4813..f5bc7f5b29 100644 --- a/src/common/dbtable.cpp +++ b/src/common/dbtable.cpp @@ -137,7 +137,7 @@ wxTable::wxTable(wxDB *pwxDB, const char *tblName, const int nCols, char s[200]; tableID = ++lastTableID; - sprintf(s, "wxTable constructor (%-20s) tableID:[%6lu] pDb:[%lu]", tblName,tableID,pDb); + sprintf(s, "wxTable constructor (%-20s) tableID:[%6lu] pDb:[%p]", tblName,tableID,pDb); #if __WXDEBUG__ > 0 CstructTablesInUse *tableInUse; @@ -241,7 +241,7 @@ wxTable::~wxTable() char s[80]; if (pDb) { - sprintf(s, "wxTable destructor (%-20s) tableID:[%6lu] pDb:[%lu]", tableName,tableID,pDb); + sprintf(s, "wxTable destructor (%-20s) tableID:[%6lu] pDb:[%p]", tableName,tableID,pDb); pDb->WriteSqlLog(s); }