---

 src/decoder_thread.c |    2 +-
 src/decoder_thread.h |    2 +-
 src/main.c           |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index cb153b6..98b0025 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 439641e..27ca8a9 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 cfb3845..ebd850a 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();
 



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team

Reply via email to