mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 16:28:22 +01:00
alsaloop: remove unused assignment warning (coverity)
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
8c026b9562
commit
8dcc3a1391
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ static int increase_playback_avail_min(struct loopback_handle *lhandle)
|
|||
/* avoid 100% CPU usage for broken plugins */
|
||||
ts.tv_sec = 0;
|
||||
ts.tv_nsec = 10000;
|
||||
err = nanosleep(&ts, NULL);
|
||||
nanosleep(&ts, NULL);
|
||||
return 0;
|
||||
}
|
||||
snd_pcm_sw_params_alloca(&swparams);
|
||||
|
|
Loading…
Reference in a new issue