rt: Remove unused variable
This commit is contained in:
parent
6841c777f6
commit
fc5ec630d4
1 changed files with 2 additions and 2 deletions
|
@ -333,8 +333,8 @@ private:
|
|||
|
||||
uv_timer_t *timer = (uv_timer_t *)malloc(sizeof(uv_timer_t));
|
||||
timer->data = td;
|
||||
int result = uv_timer_init(loop, timer);
|
||||
result = uv_timer_start(timer, timer_cb, td->timeout, 0);
|
||||
uv_timer_init(loop, timer);
|
||||
uv_timer_start(timer, timer_cb, td->timeout, 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue