summaryrefslogtreecommitdiff
path: root/src/secmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/secmem.c')
-rw-r--r--src/secmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/secmem.c b/src/secmem.c
index 81360b99..ca85ca42 100644
--- a/src/secmem.c
+++ b/src/secmem.c
@@ -57,7 +57,7 @@ typedef struct memblock
} memblock_t;
/* This flag specifies that the memory block is in use. */
-#define MB_FLAG_ACTIVE 1 << 0
+#define MB_FLAG_ACTIVE (1 << 0)
/* The pool of secure memory. */
static void *pool;