From d742fa6596099b963127b33e845f1c8485cc5840 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 12 Apr 2008 04:07:44 +0000 Subject: whitespace cleanup Clean up some space indentations, replace with tabs. git-svn-id: https://svn.musicpd.org/mpd/trunk@7239 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/audioOutputs/audioOutput_alsa.c | 14 +++++++------- src/decode.c | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c index 3da3e470d..167874b07 100644 --- a/src/audioOutputs/audioOutput_alsa.c +++ b/src/audioOutputs/audioOutput_alsa.c @@ -347,10 +347,10 @@ static int alsa_errorRecovery(AlsaData * ad, int err) snd_pcm_close(ad->pcmHandle); ad->pcmHandle = NULL; break; - /* this is no error, so just keep running */ - case SND_PCM_STATE_RUNNING: - err = 0; - break; + /* this is no error, so just keep running */ + case SND_PCM_STATE_RUNNING: + err = 0; + break; default: /* unknown state, do nothing */ break; @@ -371,9 +371,9 @@ static void alsa_closeDevice(AudioOutput * audioOutput) AlsaData *ad = audioOutput->data; if (ad->pcmHandle) { - if (snd_pcm_state(ad->pcmHandle) == SND_PCM_STATE_RUNNING) { - snd_pcm_drain(ad->pcmHandle); - } + if (snd_pcm_state(ad->pcmHandle) == SND_PCM_STATE_RUNNING) { + snd_pcm_drain(ad->pcmHandle); + } snd_pcm_close(ad->pcmHandle); ad->pcmHandle = NULL; } diff --git a/src/decode.c b/src/decode.c index 2d4f1cd16..c8e9fd9cf 100644 --- a/src/decode.c +++ b/src/decode.c @@ -308,7 +308,7 @@ static void decodeStart(PlayerControl * pc, OutputBuffer * cb, /* for http streams, seekable is determined in bufferInputStream */ dc->seekable = inStream.seekable; - + if (dc->stop) goto stop; -- cgit v1.2.3