diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index d20db9f40aba2d1772d8258b6d711c0431e50264..328e1683ebc4c08e0bd8389d5dcae6970fa873af 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -120,7 +120,8 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
     top = NELLY_BUF_LEN-1;
 
     while (bot < NELLY_BUF_LEN) {
-        audio[bot] = a_in[bot]*sine_window[bot]+state[bot]*sine_window[top] + s->add_bias;
+        audio[bot] = a_in [bot]*sine_window[bot]
+                    +state[bot]*sine_window[top] + s->add_bias;
 
         bot++;
         top--;