# HG changeset patch # User diego # Date 1209655257 0 # Node ID dc6bc48b0e177541dce300246009499779f39e3c # Parent 4c47bb2a0c8bbe6321fb07f974e249347bdba20f Mark symbol as static, patch by Diego 'Flameeyes' Petten, flameeyes gmail com. diff -r 4c47bb2a0c8b -r dc6bc48b0e17 nellymoserdec.c --- a/nellymoserdec.c Wed Apr 30 16:33:58 2008 +0000 +++ b/nellymoserdec.c Thu May 01 15:20:57 2008 +0000 @@ -264,7 +264,9 @@ } } -void nelly_decode_block(NellyMoserDecodeContext *s, const unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES]) +static void nelly_decode_block(NellyMoserDecodeContext *s, + const unsigned char block[NELLY_BLOCK_LEN], + float audio[NELLY_SAMPLES]) { int i,j; float buf[NELLY_FILL_LEN], pows[NELLY_FILL_LEN];