Add missing format param (#391)

This commit is contained in:
Karol Szuster 2016-11-25 11:26:58 +01:00 committed by Vincent Herbet
parent 4c8ef63383
commit e3ae451c09

View File

@ -458,7 +458,7 @@ static cell AMX_NATIVE_CALL next_hudchannel(AMX *amx, cell *params)
int index = params[1];
if (index < 1 || index > gpGlobals->maxClients)
{
LogError(amx, AMX_ERR_NATIVE, "Invalid player %d");
LogError(amx, AMX_ERR_NATIVE, "Invalid player %d", index);
return 0;
}