Make sure various functions return something. Silences warnings on gcc 4.4
Patch by lukas at double dot net
This commit is contained in:
parent
e2a1aee71b
commit
c9d0527711
5 changed files with 5 additions and 0 deletions
|
@ -150,6 +150,7 @@ dvb_table_input(void *aux)
|
|||
}
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -167,6 +167,7 @@ serviceprobe_thread(void *aux)
|
|||
subscription_unsubscribe(s);
|
||||
was_doing_work = 1;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -239,6 +239,7 @@ subscription_janitor(void *aux)
|
|||
|
||||
pthread_mutex_unlock(&global_lock);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -445,6 +445,7 @@ tcp_server_loop(void *aux)
|
|||
}
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -506,6 +506,7 @@ xmltv_thread(void *aux)
|
|||
free(p);
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue