mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-20 08:56:56 -05:00
fix some printf arguments
This commit is contained in:
parent
67754ad3bc
commit
aaeafa49c1
4 changed files with 5 additions and 5 deletions
|
|
@ -599,8 +599,8 @@ static int set_rlimit(struct impl *impl)
|
|||
rttime = pw_rtkit_get_rttime_usec_max(impl->system_bus);
|
||||
if (rttime >= 0) {
|
||||
if ((rlim_t)rttime < rl.rlim_cur) {
|
||||
pw_log_debug("clamping rt.time.soft from %ld to %lld because of RTKit",
|
||||
rl.rlim_cur, rttime);
|
||||
pw_log_debug("clamping rt.time.soft from %llu to %lld because of RTKit",
|
||||
(long long)rl.rlim_cur, rttime);
|
||||
}
|
||||
|
||||
rl.rlim_cur = SPA_MIN(rl.rlim_cur, (rlim_t)rttime);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue