Browse Source

Remove useless parentheses.

Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
a90fbeec2a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ra144.c

+ 1
- 1
libavcodec/ra144.c View File

@@ -214,7 +214,7 @@ static void int_to_int16(int16_t *out, const int *inp)
int i;

for (i=0; i < 30; i++)
*(out++) = *(inp++);
*out++ = *inp++;
}

/**


Loading…
Cancel
Save