Fix some warnings from previous commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11795 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
df0dc2262e
commit
decef18a94
2 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,9 @@ void audio_set_source(int source, unsigned flags)
|
||||||
{
|
{
|
||||||
/* Prevent pops from unneeded switching */
|
/* Prevent pops from unneeded switching */
|
||||||
static int last_source = AUDIO_SRC_PLAYBACK;
|
static int last_source = AUDIO_SRC_PLAYBACK;
|
||||||
bool recording = flags & SRCF_RECORDING;
|
#ifdef CONFIG_TUNER
|
||||||
static bool last_recording = false;
|
static bool last_recording = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
switch (source)
|
switch (source)
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
|
|
||||||
|
|
||||||
/* peaks */
|
/* peaks */
|
||||||
static int play_peak_left, play_peak_right;
|
|
||||||
static unsigned long *rec_peak_addr;
|
static unsigned long *rec_peak_addr;
|
||||||
static int rec_peak_left, rec_peak_right;
|
static int rec_peak_left, rec_peak_right;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue