suggest parentheses around assignment used as truth value
warning....
if(ret = ibv_post_send(aa))
{
}
변경
if((ret = ibv_post_send(aa)))
{
}
잘보면 차이가 보인다.
warning....
if(ret = ibv_post_send(aa))
{
}
변경
if((ret = ibv_post_send(aa)))
{
}
잘보면 차이가 보인다.
댓글
댓글 쓰기