mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
Fix a typo in #if 0 code
This commit is contained in:
parent
7effdac07a
commit
9fdff10aa0
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ void Free(void *, const char *, int);
|
|||
#define free(x) Free(x, __FILE__, __LINE__)
|
||||
#define realloc(x, y) Realloc(x, y, __FILE__, __LINE__)
|
||||
#else
|
||||
#define malloc(x) Malloc(x, NULL 0)
|
||||
#define malloc(x) Malloc(x, NULL, 0)
|
||||
#define calloc(x, y) Calloc(x, y, NULL, 0)
|
||||
#define free(x) Free(x, NULL, 0)
|
||||
#define realloc(x, y) Realloc(x, y, NULL, 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue