From 342cf00fb74d7832598ad2431b3338512273959e Mon Sep 17 00:00:00 2001 From: matteo Date: Sun, 16 Mar 2003 22:37:31 +0000 Subject: dom mar 16 23:37:23 CET 2003 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@647 f38db490-d61c-443f-a65b-d21fe96a405b --- codecs/codec_ulaw.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'codecs/codec_ulaw.c') diff --git a/codecs/codec_ulaw.c b/codecs/codec_ulaw.c index 2d0a06155..d536bf052 100755 --- a/codecs/codec_ulaw.c +++ b/codecs/codec_ulaw.c @@ -72,7 +72,7 @@ struct ulaw_decoder_pvt */ static struct ast_translator_pvt * -ulawtolin_new () +ulawtolin_new (void) { struct ulaw_decoder_pvt *tmp; tmp = malloc (sizeof (struct ulaw_decoder_pvt)); @@ -98,7 +98,7 @@ ulawtolin_new () */ static struct ast_translator_pvt * -lintoulaw_new () +lintoulaw_new (void) { struct ulaw_encoder_pvt *tmp; tmp = malloc (sizeof (struct ulaw_encoder_pvt)); @@ -243,7 +243,7 @@ lintoulaw_frameout (struct ast_translator_pvt *pvt) */ static struct ast_frame * -ulawtolin_sample () +ulawtolin_sample (void) { static struct ast_frame f; f.frametype = AST_FRAME_VOICE; @@ -262,7 +262,7 @@ ulawtolin_sample () */ static struct ast_frame * -lintoulaw_sample () +lintoulaw_sample (void) { static struct ast_frame f; f.frametype = AST_FRAME_VOICE; -- cgit v1.2.3