textio/txCommands.c: Wrong type of arguments to formatting function
Fix code scanning alert no. 116: Wrong type of arguments to formatting function (#19) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
parent
a307e9d052
commit
8f60ed472b
|
|
@ -201,7 +201,7 @@ void
|
|||
TxPrintEvent(event)
|
||||
TxInputEvent *event;
|
||||
{
|
||||
TxError("Input event at 0x%x\n ", event);
|
||||
TxError("Input event at %p\n ", event);
|
||||
if (event->txe_button == TX_EOF) {
|
||||
TxError("EOF event");
|
||||
} else if (event->txe_button == TX_BYPASS) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue