From db07ae43eeae7a5b467b562fc94cb184f218c0de Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 27 Nov 2020 14:11:17 +0900 Subject: [PATCH] system/nxplayer/nxplayer.c: Don't assume debug macro expansion --- system/nxplayer/nxplayer.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/nxplayer/nxplayer.c b/system/nxplayer/nxplayer.c index bb178f3e8..0ab7fe912 100644 --- a/system/nxplayer/nxplayer.c +++ b/system/nxplayer/nxplayer.c @@ -1082,7 +1082,9 @@ static void *nxplayer_playthread(pthread_addr_t pvarg) /* Send a stop message to the device */ +#ifdef CONFIG_DEBUG_FEATURES audinfo("Stopping! outstanding=%d\n", outstanding); +#endif #ifdef CONFIG_AUDIO_MULTI_SESSION ioctl(pplayer->dev_fd, AUDIOIOC_STOP, @@ -1101,7 +1103,9 @@ static void *nxplayer_playthread(pthread_addr_t pvarg) /* Message indicating the playback is complete */ case AUDIO_MSG_COMPLETE: +#ifdef CONFIG_DEBUG_FEATURES audinfo("Play complete. outstanding=%d\n", outstanding); +#endif DEBUGASSERT(outstanding == 0); running = false; break;