aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decode.c10
1 files changed, 5 insertions, 5 deletions
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(); \
} \