From: Andre Date: Sat, 25 Mar 2006 20:33:20 +0000 (+0100) Subject: ortp_send: Kill an unused variable X-Git-Tag: v0.2.12~136 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=a2ce091cb5387eb389638dd4aa8487ef2dda310e;hp=9f07bfb31ea556c41b45cdc3f37b6ccccbc8dca0 ortp_send: Kill an unused variable --- diff --git a/ortp_send.c b/ortp_send.c index aabbb7da..19b54d39 100644 --- a/ortp_send.c +++ b/ortp_send.c @@ -54,7 +54,6 @@ struct ortp_target { RtpSession *session; }; -static int numtargets; static struct list_head targets; static struct sender *self; @@ -66,7 +65,6 @@ static void ortp_delete_target(struct ortp_target *ot, const char *msg) rtp_session_destroy(ot->session); ot->session = NULL; } - numtargets--; list_del(&ot->node); free(ot); }