diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 11:05:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 11:05:34 +0200 |
commit | 5e7b18f87458b3f7a65d23d87f7db3d864fbbf11 (patch) | |
tree | 2a1dd46bcff693de6849d31f204de554158de374 /src/player_thread.c | |
parent | 5e4be9e495677a6728e3161e39a05a081a5bff9a (diff) | |
download | mpd-5e7b18f87458b3f7a65d23d87f7db3d864fbbf11.tar.gz mpd-5e7b18f87458b3f7a65d23d87f7db3d864fbbf11.tar.xz mpd-5e7b18f87458b3f7a65d23d87f7db3d864fbbf11.zip |
song: removed CamelCase
CamelCase is ugly... rename all functions.
Diffstat (limited to 'src/player_thread.c')
-rw-r--r-- | src/player_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player_thread.c b/src/player_thread.c index a9e594eea..6a08bf46e 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -135,7 +135,7 @@ static void processDecodeInput(int *pause_r, unsigned int *bbp_r, pc.error = PLAYER_ERROR_AUDIO; ERROR("problems opening audio device " "while playing \"%s\"\n", - get_song_url(tmp, dc.next_song)); + song_get_url(dc.next_song, tmp)); *pause_r = -1; } } @@ -244,7 +244,7 @@ static void do_play(void) pc.error = PLAYER_ERROR_AUDIO; ERROR("problems opening audio device " "while playing \"%s\"\n", - get_song_url(tmp, dc.next_song)); + song_get_url(dc.next_song, tmp)); break; } |