From 2caf18ad433791b5738f95121feadc0c74cd6ad7 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Tue, 3 Apr 2007 20:10:22 +0000 Subject: Reformatting some code. git-svn-id: https://svn.musicpd.org/mpd/trunk@5819 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/decode.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/decode.c') diff --git a/src/decode.c b/src/decode.c index 656b7313a..625a40523 100644 --- a/src/decode.c +++ b/src/decode.c @@ -220,20 +220,20 @@ static int decodeSeek(PlayerControl * pc, DecoderControl * dc, } \ if(pc->pause) { \ pause = !pause; \ - if(pause) pc->state = PLAYER_STATE_PAUSE; \ + if (pause) pc->state = PLAYER_STATE_PAUSE; \ else { \ - if(openAudioDevice(NULL)<0) { \ + if (openAudioDevice(NULL) < 0) { \ pathcpy_trunc(pc->erroredUrl, pc->utf8url); \ pc->error = PLAYER_ERROR_AUDIO; \ ERROR("problems opening audio device while playing \"%s\"\n", pc->utf8url); \ - quitDecode(pc,dc); \ + quitDecode(pc, dc); \ return; \ } \ pc->state = PLAYER_STATE_PLAY; \ } \ pc->pause = 0; \ - kill(getppid(),SIGUSR1); \ - if(pause) { \ + kill(getppid(), SIGUSR1); \ + if (pause) { \ dropBufferedAudio(); \ closeAudioDevice(); \ } \ -- cgit v1.2.3