fix errant comments

This commit is contained in:
Dylan Cali 2015-06-28 21:28:49 -05:00
parent c8c36f5907
commit b0023f0ccf
2 changed files with 4 additions and 4 deletions

View File

@ -33,8 +33,8 @@ int main (void)
rc = zmq_unbind (sb, "inproc://a");
assert (rc == 0);
// rc = zmq_ctx_term (ctx);
// assert (rc == 0);
rc = zmq_ctx_term (ctx);
assert (rc == 0);
return 0;
}

View File

@ -38,8 +38,8 @@ int main (void)
rc = zmq_unbind (sb, endpoint);
assert (rc == 0);
// rc = zmq_ctx_term (ctx);
// assert (rc == 0);
rc = zmq_ctx_term (ctx);
assert (rc == 0);
return 0;
}