From: Vinod Koul Date: Sat, 9 Jan 2016 08:12:46 +0000 (+0530) Subject: tinycompress: crec: make functions static X-Git-Tag: v1.1.1~2 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=5866ea0e6e793f2661a69d2584b28f20e210bf2c;p=tinycompress.git tinycompress: crec: make functions static Sparse rightly complains some functions should be static so make them static crec.c:113:26: warning: symbol 'blank_wave_header' was not declared. Should it be static? crec.c:239:6: warning: symbol 'capture_samples' was not declared. Should it be static? Signed-off-by: Vinod Koul --- diff --git a/src/utils/crec.c b/src/utils/crec.c index 6e8166d..8d5b7b0 100644 --- a/src/utils/crec.c +++ b/src/utils/crec.c @@ -110,7 +110,7 @@ struct wave_header { } __attribute__((__packed__)) data; } __attribute__((__packed__)); -const struct wave_header blank_wave_header = { +static const struct wave_header blank_wave_header = { .riff = { .chunk = { .desc = "RIFF", @@ -236,7 +236,7 @@ static int finish_record(void) return 0; } -void capture_samples(char *name, unsigned int card, unsigned int device, +static void capture_samples(char *name, unsigned int card, unsigned int device, unsigned long buffer_size, unsigned int frag, unsigned int length, unsigned int rate, unsigned int channels, unsigned int format)