windows/windDebug.c: Wrong type of arguments to formatting function
Fix code scanning alert no. 130: Wrong type of arguments to formatting function (#43) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
parent
3848ec7b4e
commit
9096946a12
|
|
@ -54,7 +54,7 @@ windPrintWindow(w)
|
|||
LinkedRect *lr;
|
||||
|
||||
TxPrintf("\nWindow %d: '%s'\n", w->w_wid, w->w_caption);
|
||||
TxPrintf(" Client %x Surface %x \n", w->w_client, w->w_surfaceID);
|
||||
TxPrintf(" Client %lx Surface %lx \n", w->w_client, w->w_surfaceID);
|
||||
|
||||
TxPrintf(" All area (%d, %d) (%d, %d)\n",
|
||||
w->w_allArea.r_xbot, w->w_allArea.r_ybot,
|
||||
|
|
|
|||
Loading…
Reference in New Issue