Skip to content

Commit

Permalink
Merge pull request ros2#35 from ros2/invalid_null_check
Browse files Browse the repository at this point in the history
Remove check argument for null from int64_t
  • Loading branch information
jacquelinekay committed Mar 30, 2016
2 parents 494cfc5 + a878760 commit 3c15afa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rcl/src/rcl/wait.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,6 @@ rcl_ret_t
rcl_wait(rcl_wait_set_t * wait_set, int64_t timeout)
{
RCL_CHECK_ARGUMENT_FOR_NULL(wait_set, RCL_RET_INVALID_ARGUMENT);
RCL_CHECK_ARGUMENT_FOR_NULL(timeout, RCL_RET_INVALID_ARGUMENT);
if (!__wait_set_is_valid(wait_set)) {
RCL_SET_ERROR_MSG("wait set is invalid");
return RCL_RET_WAIT_SET_INVALID;
Expand Down

0 comments on commit 3c15afa

Please sign in to comment.