GCC Wallification

This commit is contained in:
Scott Ehlert
2006-08-27 02:17:18 +00:00
parent 6786b0e356
commit 81ac41037b
41 changed files with 486 additions and 431 deletions

View File

@@ -1195,7 +1195,7 @@ AMX *MNF_GetAmxScript(int id)
while (iter && id--)
++iter;
if (iter == NULL)
if (iter == 0)
return NULL;
return (*iter).getAMX();
@@ -1208,7 +1208,7 @@ const char *MNF_GetAmxScriptName(int id)
while (iter && id--)
++iter;
if (iter == NULL)
if (iter == 0)
return NULL;
return (*iter).getName();