aboutsummaryrefslogtreecommitdiffstats
path: root/jitterbuf.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-21 06:30:23 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-21 06:30:23 +0000
commitbef71744f4685c36a2c2db1af2d9d97a1abca305 (patch)
tree32ef323c5510fa3321c859182f59030f2c675829 /jitterbuf.c
parent31e8dcf4fe91466bf35a3f6d4de2bd714c43b288 (diff)
fix various compiler warnings
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5491 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'jitterbuf.c')
-rwxr-xr-xjitterbuf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/jitterbuf.c b/jitterbuf.c
index bab3f28c6..a7668e17e 100755
--- a/jitterbuf.c
+++ b/jitterbuf.c
@@ -98,10 +98,12 @@ void jb_destroy(jitterbuf *jb)
/* maybe later we can make the history buckets variable size, or something? */
/* drop parameter determines whether we will drop outliers to minimize
* delay */
+#if 0
static int longcmp(const void *a, const void *b)
{
return *(long *)a - *(long *)b;
}
+#endif
static void history_put(jitterbuf *jb, long ts, long now)
{