Skip to content

Commit 9ea5dfa

Browse files
committed
class/opal_fifo: fix warning
Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
1 parent 296c91a commit 9ea5dfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/class/opal_fifo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ static inline opal_list_item_t *opal_fifo_pop_atomic (opal_fifo_t *fifo)
262262
}
263263

264264
next = (opal_list_item_t *) item->opal_list_next;
265-
fifo->opal_fifo_head.data.item = next;
265+
fifo->opal_fifo_head.data.item = (uintptr_t) next;
266266
#endif
267267

268268
if (ghost == next) {

0 commit comments

Comments
 (0)