mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-30 15:41:12 +00:00
Fix a typo causing NOTRACK to fail
This commit is contained in:
parent
fb30dd9a3f
commit
df61f3c182
1 changed files with 3 additions and 3 deletions
6
gmqcc.h
6
gmqcc.h
|
@ -215,9 +215,9 @@ uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
|
||||||
uint32_t util_crc32(uint32_t crc, const char *data, size_t len);
|
uint32_t util_crc32(uint32_t crc, const char *data, size_t len);
|
||||||
|
|
||||||
#ifdef NOTRACK
|
#ifdef NOTRACK
|
||||||
# define mem_a(x) malloc(x)
|
# define mem_a(x) malloc (x)
|
||||||
# define mem_d(x) free (x)
|
# define mem_d(x) free (x)
|
||||||
# define mem_r(x, n) free (x, n)
|
# define mem_r(x, n) realloc(x, n)
|
||||||
#else
|
#else
|
||||||
# define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
|
# define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
|
||||||
# define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
|
# define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
|
||||||
|
|
Loading…
Reference in a new issue