summaryrefslogtreecommitdiff
path: root/libavcodec/lpc.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-24 16:06:00 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-11-25 02:00:06 +0000
commitc117da9d3e0db7dc311d817054988364b3ef4587 (patch)
treea5f31ee4916ab31e7ad73e175839f61f3120b57f /libavcodec/lpc.h
parentbc75b64cff37d58f3944e2da3da45c37f35f019a (diff)
lpc: remove unneeded {}
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index 6b3f80e2bc..642854c59a 100644
--- a/libavcodec/lpc.h
+++ b/libavcodec/lpc.h
@@ -152,7 +152,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;
if (normalize)