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:
Barry Wardell 2006-12-18 02:09:10 +00:00
parent df0dc2262e
commit decef18a94
2 changed files with 2 additions and 2 deletions

View file

@ -31,8 +31,9 @@ void audio_set_source(int source, unsigned flags)
{
/* Prevent pops from unneeded switching */
static int last_source = AUDIO_SRC_PLAYBACK;
bool recording = flags & SRCF_RECORDING;
#ifdef CONFIG_TUNER
static bool last_recording = false;
#endif
switch (source)
{

View file

@ -32,7 +32,6 @@
/* peaks */
static int play_peak_left, play_peak_right;
static unsigned long *rec_peak_addr;
static int rec_peak_left, rec_peak_right;