vppinfra: fix typo in dlmalloc.c
Type: fix Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: Idc567717494b4c40c307f20a40d5e10cd26b0a46 (cherry picked from commit 6e6968f06435727e6887abef4669715c9e59de6b)
This commit is contained in:
@ -1247,7 +1247,7 @@ static struct malloc_state _gm_;
|
||||
#define disable_expand(M) ((M)->mflags |= USE_NOEXPAND_BIT)
|
||||
#define use_trace(M) ((M)->mflags & USE_TRACE_BIT)
|
||||
#define enable_trace(M) ((M)->mflags |= USE_TRACE_BIT)
|
||||
#define disable_trace(M) ((M)->mflags |= USE_TRACE_BIT)
|
||||
#define disable_trace(M) ((M)->mflags &= ~USE_TRACE_BIT)
|
||||
|
||||
#define set_lock(M,L)\
|
||||
((M)->mflags = (L)?\
|
||||
|
Reference in New Issue
Block a user