gcc11 -Wall -Wpedantic cleanup (post TCL9)

This commit is contained in:
Darryl L. Miles
2025-01-06 16:24:57 +00:00
parent aa5ddbaa58
commit c21e182b2c
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -121,7 +121,7 @@ DebugAddFlag(clientID, name)
if (id < 0 || id >= debugNumClients)
{
TxError("DebugAddFlag: bad client id %lu (flag %s)\n", clientID, name);
TxError("DebugAddFlag: bad client id %lu (flag %s)\n", CD2INT(clientID), name);
return (0);
}
@@ -165,7 +165,7 @@ DebugShow(clientID)
if (id < 0 || id >= debugNumClients)
{
TxError("DebugShow: bad client id %lu\n", clientID);
TxError("DebugShow: bad client id %lu\n", CD2INT(clientID));
return;
}
dc = &debugClients[id];