Commit 97d11a66 authored by Nicholas Swenson's avatar Nicholas Swenson Committed by Kent Overstreet

bcache: Fix heap_peek() macro

Signed-off-by: default avatarNicholas Swenson <nks@daterainc.com>
Signed-off-by: default avatarKent Overstreet <kmo@daterainc.com>
parent 9eb8ebeb
...@@ -110,7 +110,7 @@ do { \ ...@@ -110,7 +110,7 @@ do { \
_r; \ _r; \
}) })
#define heap_peek(h) ((h)->size ? (h)->data[0] : NULL) #define heap_peek(h) ((h)->used ? (h)->data[0] : NULL)
#define heap_full(h) ((h)->used == (h)->size) #define heap_full(h) ((h)->used == (h)->size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment