aboutsummaryrefslogtreecommitdiff
path: root/multimedia/helvum/files/patch-pipewire_32bit
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/helvum/files/patch-pipewire_32bit')
-rw-r--r--multimedia/helvum/files/patch-pipewire_32bit27
1 files changed, 0 insertions, 27 deletions
diff --git a/multimedia/helvum/files/patch-pipewire_32bit b/multimedia/helvum/files/patch-pipewire_32bit
deleted file mode 100644
index c163976525bc..000000000000
--- a/multimedia/helvum/files/patch-pipewire_32bit
+++ /dev/null
@@ -1,27 +0,0 @@
-https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/merge_requests/108
-
-error[E0277]: the trait bound `i32: From<u32>` is not satisfied
- --> cargo-crates/pipewire-0.4.1/src/loop_.rs:414:50
- |
-414 | tv_nsec: duration.subsec_nanos().into(),
- | ^^^^ the trait `From<u32>` is not implemented for `i32`
- |
- = help: the following implementations were found:
- <i32 as From<NonZeroI32>>
- <i32 as From<bool>>
- <i32 as From<i16>>
- <i32 as From<i8>>
- and 3 others
- = note: required because of the requirements on the impl of `Into<i32>` for `u32`
-
---- cargo-crates/pipewire-0.4.1/src/loop_.rs.orig 1973-11-29 21:33:09 UTC
-+++ cargo-crates/pipewire-0.4.1/src/loop_.rs
-@@ -411,7 +411,7 @@ where
- fn duration_to_timespec(duration: Duration) -> spa_sys::timespec {
- spa_sys::timespec {
- tv_sec: duration.as_secs().try_into().expect("Duration too long"),
-- tv_nsec: duration.subsec_nanos().into(),
-+ tv_nsec: duration.subsec_nanos() as libc::c_long,
- }
- }
-