database/DBcellsrch.c: Wrong type of arguments to formatting function

Fix code scanning alert no. 66: Wrong type of arguments to formatting function (#33)

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
Darryl Miles 2024-09-30 04:49:16 +01:00 committed by Tim Edwards
parent e896377ead
commit 82aa62e65d
1 changed files with 1 additions and 1 deletions

View File

@ -1621,7 +1621,7 @@ dbTileScaleFunc(tile, scvals)
if ((targetRect.r_xtop - targetRect.r_xbot == 0) ||
(targetRect.r_ytop - targetRect.r_ybot == 0))
{
TxPrintf("Tile 0x%x at (%d, %d) has zero area after scaling: Removed.\n",
TxPrintf("Tile %p at (%d, %d) has zero area after scaling: Removed.\n",
tile, targetRect.r_xbot, targetRect.r_ybot);
return 0;
}