Skip to content

Commit

Permalink
ignore return code.
Browse files Browse the repository at this point in the history
CID #1400018
  • Loading branch information
alandekok committed May 26, 2017
1 parent 365e8cf commit 2862990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rlm_rest/io.c
Expand Up @@ -234,7 +234,7 @@ static int _rest_io_timer_modify(CURLM *mandle, long timeout_ms, void *ctx)
fr_timeval_from_ms(&to_add, (uint64_t)timeout_ms);
fr_timeval_add(&when, &now, &to_add);

fr_event_timer_insert(t->el, _rest_io_timer_expired, t, &when, &t->ev);
(void) fr_event_timer_insert(t->el, _rest_io_timer_expired, t, &when, &t->ev);

return 0;
}
Expand Down

0 comments on commit 2862990

Please sign in to comment.