From: Andre Noll Date: Sat, 19 Jan 2008 11:55:14 +0000 (+0100) Subject: Remove unused ortp_pre_select(). X-Git-Tag: v0.3.1~85 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=13fbaf31577b0b0292598d69b964a73f7fb9bf88 Remove unused ortp_pre_select(). --- diff --git a/ortp_send.c b/ortp_send.c index 597068a8..71544f49 100644 --- a/ortp_send.c +++ b/ortp_send.c @@ -308,12 +308,6 @@ success: } } -static void ortp_pre_select(__a_unused int *max_fileno, __a_unused fd_set *rfds, - __a_unused fd_set *wfds) -{ - return; -} - static char *ortp_help(void) { return make_message( @@ -337,7 +331,7 @@ void ortp_send_init(struct sender *s) s->info = ortp_info; s->help = ortp_help; s->send = ortp_send; - s->pre_select = ortp_pre_select; + s->pre_select = NULL; s->post_select = NULL; s->shutdown_clients = ortp_shutdown_targets; s->client_cmds[SENDER_ON] = ortp_com_on;