Make sure various functions return something. Silences warnings on gcc 4.4

Patch by lukas at double dot net
This commit is contained in:
Andreas Öman 2009-05-30 18:49:40 +00:00
parent e2a1aee71b
commit c9d0527711
5 changed files with 5 additions and 0 deletions

View file

@ -150,6 +150,7 @@ dvb_table_input(void *aux)
}
}
}
return NULL;
}

View file

@ -167,6 +167,7 @@ serviceprobe_thread(void *aux)
subscription_unsubscribe(s);
was_doing_work = 1;
}
return NULL;
}

View file

@ -239,6 +239,7 @@ subscription_janitor(void *aux)
pthread_mutex_unlock(&global_lock);
}
return NULL;
}

View file

@ -445,6 +445,7 @@ tcp_server_loop(void *aux)
}
}
}
return NULL;
}
/**

View file

@ -506,6 +506,7 @@ xmltv_thread(void *aux)
free(p);
}
}
return NULL;
}