[server] Update n_fputchar(...)

This commit is contained in:
RD42 2024-06-23 22:12:43 +08:00
parent 006376b50f
commit 2dbf9d9f61

View File

@ -530,7 +530,7 @@ static cell AMX_NATIVE_CALL n_fputchar(AMX *amx, cell *params)
} else {
fputc((int)params[2],(FILE*)params[1]);
} /* if */
assert(result==0 || result==1);
//assert(result==0 || result==1);
return result;
}