Skip to content
Snippets Groups Projects
Commit 0a280a1a authored by Russell Bryant's avatar Russell Bryant
Browse files

resolve a couple of compiler warnings

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48098 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent ac9100bf
No related branches found
No related tags found
No related merge requests found
...@@ -232,7 +232,7 @@ static int zap_new(struct ast_trans_pvt *pvt) ...@@ -232,7 +232,7 @@ static int zap_new(struct ast_trans_pvt *pvt)
return zap_translate(pvt, pvt->t->dstfmt, pvt->t->srcfmt); return zap_translate(pvt, pvt->t->dstfmt, pvt->t->srcfmt);
} }
static struct ast_frame *g729_fakesrc_sample() static struct ast_frame *g729_fakesrc_sample(void)
{ {
/* Don't bother really trying to test hardware ones. */ /* Don't bother really trying to test hardware ones. */
static struct ast_frame f = { static struct ast_frame f = {
...@@ -244,7 +244,7 @@ static struct ast_frame *g729_fakesrc_sample() ...@@ -244,7 +244,7 @@ static struct ast_frame *g729_fakesrc_sample()
return &f; return &f;
} }
static struct ast_frame *g723_fakesrc_sample() static struct ast_frame *g723_fakesrc_sample(void)
{ {
/* Don't bother really trying to test hardware ones. */ /* Don't bother really trying to test hardware ones. */
static struct ast_frame f = { static struct ast_frame f = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment