summaryrefslogtreecommitdiff
path: root/media
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-08-30 07:55:06 +0000
committerMoonchild <moonchild@palemoon.org>2022-08-30 07:55:06 +0000
commitea31efd98eeafeb8b31733f025e1c349e70e0efb (patch)
treedf2e472910df17e65113a233ad0a9d2b35bb75a1 /media
parentb1d148fd5220a6f3326c705db540d7294aa8e535 (diff)
parent5f1ef110ffbde5923503a706a81456d869ede81b (diff)
downloaduxp-ea31efd98eeafeb8b31733f025e1c349e70e0efb.tar.gz
Merge pull request 'Fix a couple miscellaneous Mac specific issues.' (#1998) from dbsoft/UXP:macfixes into master
Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/1998
Diffstat (limited to 'media')
-rw-r--r--media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc b/media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc
index 4b5f71aa37..cfd26497ae 100644
--- a/media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc
+++ b/media/webrtc/trunk/webrtc/system_wrappers/source/tick_util.cc
@@ -77,7 +77,7 @@ int64_t TickTime::QueryOsForTicks() {
if (retval != KERN_SUCCESS) {
// TODO(wu): Implement CHECK similar to chrome for all the platforms.
// Then replace this with a CHECK(retval == KERN_SUCCESS);
-#ifndef WEBRTC_IOS
+#if !defined(WEBRTC_IOS) && !defined(__aarch64__)
asm("int3");
#else
__builtin_trap();