1
1

removes spurious compilation warning

This commit was SVN r23441.
Этот коммит содержится в:
Christopher Yeoh 2010-07-20 06:32:36 +00:00
родитель 8a3d5d4e1c
Коммит cfea0db3a2

Просмотреть файл

@ -503,7 +503,8 @@ static inline int post_send(mca_btl_openib_endpoint_t *ep,
#if OPAL_ENABLE_DEBUG #if OPAL_ENABLE_DEBUG
do { do {
ftr->seq = ep->eager_rdma_remote.seq; ftr->seq = ep->eager_rdma_remote.seq;
} while (!OPAL_ATOMIC_CMPSET_32(&ep->eager_rdma_remote.seq, ftr->seq, ftr->seq+1)); } while (!OPAL_ATOMIC_CMPSET_32((int32_t*)&ep->eager_rdma_remote.seq,
(int32_t)ftr->seq, (int32_t)ftr->seq+1));
#endif #endif
if(ep->nbo) if(ep->nbo)
BTL_OPENIB_FOOTER_HTON(*ftr); BTL_OPENIB_FOOTER_HTON(*ftr);