Skip to content

Commit

Permalink
Fix incorrect DEBUG macro name
Browse files Browse the repository at this point in the history
Signed-off-by: James Dinan <james.dinan@intel.com>
  • Loading branch information
James Dinan committed Jun 8, 2017
1 parent 658269b commit 8708984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/symmetric_heap_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ shmem_align(size_t alignment, size_t size)
for (c = alignment >> 1; c; c >>= 1)
log2_alignment++;

RAISE_DEBUG_MSG("Alignment was rounded up from %zu to %zu\n",
alignment, (size_t) 1 << (log2_alignment + 1));
DEBUG_MSG("Alignment was rounded up from %zu to %zu\n",
alignment, (size_t) 1 << (log2_alignment + 1));

alignment = 1 << (log2_alignment + 1);
}
Expand Down

0 comments on commit 8708984

Please sign in to comment.