Commit 2a84af91 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Upset Flexelint less

parent c570edae
......@@ -75,7 +75,7 @@ static vlu_f vsm_vlu_func;
#define VSM_PRIV_SHIFT \
(sizeof (uintptr_t) * 4)
#define VSM_PRIV_MASK \
(~((uintptr_t)UINTPTR_MAX << VSM_PRIV_SHIFT))
((1UL << VSM_PRIV_SHIFT) - 1)
#define VSM_PRIV_LOW(u) \
((uintptr_t)(u) & VSM_PRIV_MASK)
#define VSM_PRIV_HIGH(u) \
......
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