2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-04-23 06:43:36 +03:00

Fix warnings in Sys_Error.

This commit is contained in:
Lev 2017-01-25 04:49:16 +05:00
parent 8f4b9b603c
commit a2d4d64444

View File

@ -508,9 +508,10 @@ void NORETURN Sys_Error(const char *error, ...)
} }
#endif // SWDS #endif // SWDS
//exit(-1);
//Allahu akbar! //Allahu akbar!
*(int *)NULL = NULL; int *null = 0;
*null = 0;
exit(-1);
} }
NOXREF void Sys_Warning(const char *pszWarning, ...) NOXREF void Sys_Warning(const char *pszWarning, ...)