summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/audio_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/audio_thread.c')
-rw-r--r--apps/plugins/mpegplayer/audio_thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c
index 45226575c9..2fb46efd56 100644
--- a/apps/plugins/mpegplayer/audio_thread.c
+++ b/apps/plugins/mpegplayer/audio_thread.c
@@ -732,7 +732,7 @@ bool audio_thread_init(void)
732 rb->queue_enable_queue_send(audio_str.hdr.q, &audio_str_queue_send, 732 rb->queue_enable_queue_send(audio_str.hdr.q, &audio_str_queue_send,
733 audio_str.thread); 733 audio_str.thread);
734 734
735 if (audio_str.thread == NULL) 735 if (audio_str.thread == 0)
736 return false; 736 return false;
737 737
738 /* Wait for thread to initialize */ 738 /* Wait for thread to initialize */
@@ -744,11 +744,11 @@ bool audio_thread_init(void)
744/* Stops the audio thread */ 744/* Stops the audio thread */
745void audio_thread_exit(void) 745void audio_thread_exit(void)
746{ 746{
747 if (audio_str.thread != NULL) 747 if (audio_str.thread != 0)
748 { 748 {
749 str_post_msg(&audio_str, STREAM_QUIT, 0); 749 str_post_msg(&audio_str, STREAM_QUIT, 0);
750 rb->thread_wait(audio_str.thread); 750 rb->thread_wait(audio_str.thread);
751 audio_str.thread = NULL; 751 audio_str.thread = 0;
752 } 752 }
753 753
754#ifndef SIMULATOR 754#ifndef SIMULATOR