gcc warning about printf() format mismatch corrected
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -774,8 +774,8 @@ void wxDB::Close(void)
|
|||||||
tiu = (CstructTablesInUse *)pNode->Data();
|
tiu = (CstructTablesInUse *)pNode->Data();
|
||||||
if (tiu->pDb == this)
|
if (tiu->pDb == this)
|
||||||
{
|
{
|
||||||
sprintf(s, "(%-20s) tableID:[%6lu] pDb:[%lu]", tiu->tableName,tiu->tableID,tiu->pDb);
|
sprintf(s, "(%-20s) tableID:[%6lu] pDb:[%p]", tiu->tableName,tiu->tableID,tiu->pDb);
|
||||||
sprintf(s2,"Orphaned found using pDb:[%lu]",this);
|
sprintf(s2,"Orphaned found using pDb:[%p]",this);
|
||||||
wxMessageBox (s,s2);
|
wxMessageBox (s,s2);
|
||||||
}
|
}
|
||||||
pNode = pNode->Next();
|
pNode = pNode->Next();
|
||||||
|
Reference in New Issue
Block a user