기본 콘텐츠로 건너뛰기

suggest parentheses around assignment used as truth value

suggest parentheses around assignment used as truth value

warning....
if(ret = ibv_post_send(aa))
{
}

변경

if((ret = ibv_post_send(aa)))
{
}

잘보면 차이가 보인다.

댓글