diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2014-07-21 17:17:03 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2014-07-21 17:17:03 +0200 |
commit | d16d6eb53869e8380ccfbe7dbc2c09d98c40ab6c (patch) | |
tree | f7bb0a9b5b1ff9a99082e69aa5ecf9d171acc274 /src/ui_act.c | |
parent | 8172003638eb2e5bb38e9a98be0f86a0c6e1cf1f (diff) | |
download | pianobar-d16d6eb53869e8380ccfbe7dbc2c09d98c40ab6c.tar.gz pianobar-d16d6eb53869e8380ccfbe7dbc2c09d98c40ab6c.tar.bz2 pianobar-d16d6eb53869e8380ccfbe7dbc2c09d98c40ab6c.zip |
Refactor audio player, add retry timeout
Fixes #442.
Diffstat (limited to 'src/ui_act.c')
-rw-r--r-- | src/ui_act.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui_act.c b/src/ui_act.c index 91a4cf7..7515396 100644 --- a/src/ui_act.c +++ b/src/ui_act.c @@ -46,7 +46,7 @@ THE SOFTWARE. /* helper to _really_ skip a song (unlock mutex, quit player) * @param player handle */ -static inline void BarUiDoSkipSong (struct audioPlayer *player) { +static inline void BarUiDoSkipSong (player_t * const player) { assert (player != NULL); pthread_mutex_lock (&player->pauseMutex); |