Remove Useless Code
minecraft-pi-reborn/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2021-11-15 20:14:11 -05:00
parent 154adea292
commit d17416421a
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
#define ALLOC_CHECK(obj) \ #define ALLOC_CHECK(obj) \
{ \ { \
if (obj == NULL) { \ if (obj == NULL) { \
ERR("(%s:%i) Memory Allocation Failed", __FILE__, __LINE__); \ ERR("%s", "Memory Allocation Failed"); \
} \ } \
} }