diff options
Diffstat (limited to 'audio/wavaudio.c')
-rw-r--r-- | audio/wavaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/wavaudio.c b/audio/wavaudio.c index ea7c6a8..85575bd 100644 --- a/audio/wavaudio.c +++ b/audio/wavaudio.c @@ -218,7 +218,7 @@ static void wav_audio_fini (void *opaque) ldebug ("wav_fini"); } -struct audio_option wav_options[] = { +static struct audio_option wav_options[] = { {"FREQUENCY", AUD_OPT_INT, &conf.settings.freq, "Frequency", NULL, 0}, @@ -233,7 +233,7 @@ struct audio_option wav_options[] = { {NULL, 0, NULL, NULL, NULL, 0} }; -struct audio_pcm_ops wav_pcm_ops = { +static const struct audio_pcm_ops wav_pcm_ops = { wav_init_out, wav_fini_out, wav_run_out, |