aboutsummaryrefslogtreecommitdiffstats
path: root/testing/firefox/fix-third_party.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/firefox/fix-third_party.patch')
-rw-r--r--testing/firefox/fix-third_party.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/firefox/fix-third_party.patch b/testing/firefox/fix-third_party.patch
deleted file mode 100644
index 7cba6e0c90..0000000000
--- a/testing/firefox/fix-third_party.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/third_party/rust/audio_thread_priority/src/rt_linux.rs.orig 2019-10-24 07:52:22.690223829 +0200
-+++ b/third_party/rust/audio_thread_priority/src/rt_linux.rs 2019-10-24 07:53:24.586418407 +0200
-@@ -100,7 +100,7 @@
- let mut policy = 0;
-
- if unsafe { libc::pthread_getschedparam(pthread_id, &mut policy, &mut param) } < 0 {
-- error!("pthread_getschedparam error {}", pthread_id);
-+ error!("pthread_getschedparam error");
- return Err(());
- }
-
-@@ -127,7 +127,7 @@
- if unsafe { libc::pthread_setschedparam(rt_priority_handle.pthread_id,
- rt_priority_handle.policy,
- &rt_priority_handle.param) } < 0 {
-- warn!("could not demote thread {}", rt_priority_handle.pthread_id);
-+ warn!("could not demote thread");
- return Err(());
- }
- return Ok(());