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:
Darryl Miles 2024-09-30 03:49:25 +01:00 committed by Tim Edwards
parent a307e9d052
commit 8f60ed472b
1 changed files with 1 additions and 1 deletions

View File

@ -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) {