From f17c0964d340f77f37a7f7c7396deef87602393e Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 22 Apr 2011 11:48:53 +0200 Subject: [PATCH] add missing static --- quic_family_tmpl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quic_family_tmpl.c b/quic_family_tmpl.c index 7a32f2d..fbefe89 100644 --- a/quic_family_tmpl.c +++ b/quic_family_tmpl.c @@ -56,8 +56,8 @@ static void FNAME(golomb_coding)(const BYTE n, const unsigned int l, unsigned in } } -unsigned int FNAME(golomb_decoding)(const unsigned int l, const unsigned int bits, - unsigned int * const codewordlen) +static unsigned int FNAME(golomb_decoding)(const unsigned int l, const unsigned int bits, + unsigned int * const codewordlen) { if (bits > VNAME(family).notGRprefixmask[l]) { /*GR*/ const unsigned int zeroprefix = cnt_l_zeroes(bits); /* leading zeroes in codeword */