aboutsummaryrefslogtreecommitdiffstats
path: root/formats/format_g723.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-18 22:02:04 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-18 22:02:04 +0000
commit176575e280779acceb70eca4b1c61839f06380bf (patch)
tree1a49b97d23c4f7231b5a2141c3df0f463118caac /formats/format_g723.c
parentd8e2b105047b369f7e4f681da52033da4467a1b2 (diff)
u_intXX_t is silly
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43236 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'formats/format_g723.c')
-rw-r--r--formats/format_g723.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/formats/format_g723.c b/formats/format_g723.c
index 615e20052..dd5a1e6af 100644
--- a/formats/format_g723.c
+++ b/formats/format_g723.c
@@ -87,8 +87,8 @@ static struct ast_frame *g723_read(struct ast_filestream *s, int *whennext)
static int g723_write(struct ast_filestream *s, struct ast_frame *f)
{
- u_int32_t delay;
- u_int16_t size;
+ uint32_t delay;
+ uint16_t size;
int res;
/* XXX there used to be a check s->fr means a read stream */
if (f->frametype != AST_FRAME_VOICE) {