More consistent types for 16-bit architectures

This commit is contained in:
Jean-Marc Valin 2012-03-05 19:19:59 -05:00
parent 3e4afc6fd2
commit c0387ff237
3 changed files with 5 additions and 5 deletions

View file

@ -830,7 +830,7 @@ int opus_decoder_ctl(OpusDecoder *st, int request, ...)
break;
case OPUS_GET_PITCH_REQUEST:
{
int *value = va_arg(ap, opus_int32*);
opus_int32 *value = va_arg(ap, opus_int32*);
if (value==NULL)
{
ret = OPUS_BAD_ARG;