diff options
author | Martin Stransky <stransky@redhat.com> | 2019-05-15 16:14:03 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2019-05-15 16:14:03 +0200 |
commit | bbb92a85723ed11fe114e3a702c1fe1362fbbf7d (patch) | |
tree | 32f9bfb12f9f13fc94e673f9e646a0a3af876dc0 /mozilla-1533969.patch | |
parent | Updated to 66.0.5 (diff) | |
download | librewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.tar.gz librewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.tar.bz2 librewolf-fedora-ff-bbb92a85723ed11fe114e3a702c1fe1362fbbf7d.zip |
Updated to 67.0
Diffstat (limited to 'mozilla-1533969.patch')
-rw-r--r-- | mozilla-1533969.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mozilla-1533969.patch b/mozilla-1533969.patch deleted file mode 100644 index d17cd29..0000000 --- a/mozilla-1533969.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -up firefox-66.0/js/src/util/NativeStack.cpp.mozilla-1533969 firefox-66.0/js/src/util/NativeStack.cpp ---- firefox-66.0/js/src/util/NativeStack.cpp.mozilla-1533969 2019-03-14 23:12:13.000000000 +0100 -+++ firefox-66.0/js/src/util/NativeStack.cpp 2019-03-22 15:17:08.338328211 +0100 -@@ -25,7 +25,7 @@ - # include <sys/syscall.h> - # include <sys/types.h> - # include <unistd.h> --static pid_t gettid() { return syscall(__NR_gettid); } -+# define gettid() static_cast<pid_t>(syscall(__NR_gettid)) - # endif - #else - # error "Unsupported platform" -diff -up firefox-66.0/tools/profiler/core/platform.h.mozilla-1533969 firefox-66.0/tools/profiler/core/platform.h ---- firefox-66.0/tools/profiler/core/platform.h.mozilla-1533969 2019-03-22 15:17:08.338328211 +0100 -+++ firefox-66.0/tools/profiler/core/platform.h 2019-03-22 15:19:00.046748130 +0100 -@@ -47,11 +47,11 @@ - #if defined(__GLIBC__) - # include <unistd.h> - # include <sys/syscall.h> --static inline pid_t gettid() { return (pid_t)syscall(SYS_gettid); } -+# define gettid() static_cast<pid_t>(syscall(SYS_gettid)) - #elif defined(GP_OS_darwin) - # include <unistd.h> - # include <sys/syscall.h> --static inline pid_t gettid() { return (pid_t)syscall(SYS_thread_selfid); } -+# define gettid() static_cast<pid_t>(syscall(SYS_thread_selfid)) - #elif defined(GP_OS_android) - # include <unistd.h> - #elif defined(GP_OS_windows) |