mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
modules: fix scan-build errors for unused variables
All cases of value stored but never read
This commit is contained in:
parent
07503410c7
commit
049eaac821
1 changed files with 1 additions and 1 deletions
|
|
@ -497,7 +497,7 @@ static void idle_func(struct spa_source *source)
|
|||
pw_log_debug("rt.prio:%d rt.time.soft:%"PRIi64" rt.time.hard:%"PRIi64,
|
||||
rtprio, (int64_t)rl.rlim_cur, (int64_t)rl.rlim_max);
|
||||
|
||||
if ((r = setrlimit(RLIMIT_RTTIME, &rl)) < 0)
|
||||
if (setrlimit(RLIMIT_RTTIME, &rl) < 0)
|
||||
pw_log_debug("setrlimit() failed: %s", strerror(errno));
|
||||
|
||||
if ((r = pw_rtkit_make_realtime(impl->system_bus, 0, rtprio)) < 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue