summaryrefslogtreecommitdiff
path: root/jitterbuf.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-21 06:30:23 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-21 06:30:23 +0000
commita729a57ba121061fd42f5dd4f557ed1f18d6dc99 (patch)
tree32ef323c5510fa3321c859182f59030f2c675829 /jitterbuf.c
parent1f9ab2380a4543526bbd20e0fa754de95747c77e (diff)
fix various compiler warnings
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5491 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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)
{