summaryrefslogtreecommitdiff
path: root/codecs/codec_ulaw.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-03-28 21:15:10 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-03-28 21:15:10 +0000
commit2326d0d499aa47e85d712f23f0510c70a55cc98c (patch)
tree38f344dcbc5e28c148eecd9e0b72a2816b8589cf /codecs/codec_ulaw.c
parentf7debd18231c3c15c26ac2759ab6c1d97d123050 (diff)
Bring in the new loader code as described in mantis #4377
and updated to today's version. The core of the patch is only two files, loader.c and include/asterisk/module.h, with the other files touched only to adapt non-standard usages of the reference counts and localuser lists. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15784 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/codec_ulaw.c')
-rw-r--r--codecs/codec_ulaw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/codecs/codec_ulaw.c b/codecs/codec_ulaw.c
index 38332019c..4f38a024e 100644
--- a/codecs/codec_ulaw.c
+++ b/codecs/codec_ulaw.c
@@ -418,7 +418,7 @@ char *description(void)
int usecount(void)
{
int res;
- STANDARD_USECOUNT(res);
+ OLD_STANDARD_USECOUNT(res);
return res;
}