avcodec/lpc: remove unneeded {}

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-11-15 02:08:20 +01:00
parent d4065a9f47
commit 85929b9caa
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
int normalize)
{
int i, j;
LPC_TYPE err = { 0 };
LPC_TYPE err = 0;
LPC_TYPE *lpc_last = lpc;
av_assert2(normalize || !fail);