diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:44:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:44:29 +0200 |
commit | a2b24462e8c6517cbfb0eb9e5632d00ce3dd4ee3 (patch) | |
tree | 6ba0cd92a15310f376030f17af202f7144c33ea3 /src | |
parent | 56cdce6946d5c281ba278b19ec89204d6023c6fb (diff) | |
download | mpd-a2b24462e8c6517cbfb0eb9e5632d00ce3dd4ee3.tar.gz mpd-a2b24462e8c6517cbfb0eb9e5632d00ce3dd4ee3.tar.xz mpd-a2b24462e8c6517cbfb0eb9e5632d00ce3dd4ee3.zip |
renamed decoderInit() to decoder_thread_start()
Diffstat (limited to 'src')
-rw-r--r-- | src/decoder_thread.c | 2 | ||||
-rw-r--r-- | src/decoder_thread.h | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index cb153b6e5..98b0025ec 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -187,7 +187,7 @@ static void * decoder_task(mpd_unused void *arg) return NULL; } -void decoderInit(void) +void decoder_thread_start(void) { pthread_attr_t attr; pthread_t decoder_thread; diff --git a/src/decoder_thread.h b/src/decoder_thread.h index 439641e8a..27ca8a9b2 100644 --- a/src/decoder_thread.h +++ b/src/decoder_thread.h @@ -20,6 +20,6 @@ #ifndef DECODER_THREAD_H #define DECODER_THREAD_H -void decoderInit(void); +void decoder_thread_start(void); #endif diff --git a/src/main.c b/src/main.c index cfb38458d..ebd850abd 100644 --- a/src/main.c +++ b/src/main.c @@ -433,7 +433,7 @@ int main(int argc, char *argv[]) initZeroconf(); openVolumeDevice(); - decoderInit(); + decoder_thread_start(); player_create(); read_state_file(); |