Skip to content
Snippets Groups Projects
Commit cfa8e712 authored by David Gloe's avatar David Gloe Committed by Morris Jette
Browse files

Fix typo in recent update

parent 0e153db0
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ static void *_timer_func(void *raw_data)
pthread_mutex_lock(&timer_lock);
gettimeofday(&now, NULL);
ts.tv_sec = now.tv_sec + time_outs;
ts.tv_sec = now.tv_sec + time_out;
ts.tv_nsec = now.tv_usec * 1000;
if (pthread_cond_timedwait(&timer_cond, &timer_lock, &ts) == ETIMEDOUT){
info("Apbasil taking too long--terminating apbasil pid: %d",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment