Fix yellow 65b3ff81c5
Change-Id: Ibf99e4e6f98021b35d420520219287336bf25f0e
This commit is contained in:
parent
65b3ff81c5
commit
c0c1a6e5f0
1 changed files with 5 additions and 0 deletions
|
@ -232,6 +232,9 @@ static void dc_thread_start(struct playlist_info *playlist, bool is_dirty)
|
|||
#ifdef HAVE_DIRCACHE
|
||||
if (playlist == ¤t_playlist)
|
||||
queue_post(&playlist_queue, PLAYLIST_DC_SCAN_START, is_dirty);
|
||||
#else
|
||||
(void)playlist;
|
||||
(void)is_dirty;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -240,6 +243,8 @@ static void dc_thread_stop(struct playlist_info *playlist)
|
|||
#ifdef HAVE_DIRCACHE
|
||||
if (playlist == ¤t_playlist)
|
||||
queue_send(&playlist_queue, PLAYLIST_DC_SCAN_STOP, 0);
|
||||
#else
|
||||
(void)playlist;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue