# HG changeset patch # User reynaldo # Date 1238862474 0 # Node ID dfe2d348aa501630192bff4ff6c9606568e3521b # Parent 7f594601d5e93ecf77cef83acb3dbfdc3aeb42bd Add missing static qualifier from function declaration. Patch by Kenan Gillet. diff -r 7f594601d5e9 -r dfe2d348aa50 qcelpdec.c --- a/qcelpdec.c Sat Apr 04 13:20:53 2009 +0000 +++ b/qcelpdec.c Sat Apr 04 16:27:54 2009 +0000 @@ -586,7 +586,7 @@ * * TIA/EIA/IS-733 2.4.3.3.5 */ -void lspf2lpc(const float *lspf, float *lpc) +static void lspf2lpc(const float *lspf, float *lpc) { double lsf[10]; double bandwith_expansion_coeff = QCELP_BANDWITH_EXPANSION_COEFF;