summaryrefslogtreecommitdiff
path: root/gcc9-fix.patch
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2019-07-25 15:03:46 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2019-07-25 15:03:46 -0700
commitdb7baf5e5597321171dac6a186a8d42baa450bd1 (patch)
tree9977724b8a1b93c5735f0d60eded3a12de03dadb /gcc9-fix.patch
parentUpdated to 28.6.0 (diff)
downloadpalemoon-db7baf5e5597321171dac6a186a8d42baa450bd1.tar.xz
Updated to 28.6.1
Diffstat (limited to 'gcc9-fix.patch')
-rw-r--r--gcc9-fix.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc9-fix.patch b/gcc9-fix.patch
deleted file mode 100644
index f45c1c8..0000000
--- a/gcc9-fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/js/xpconnect/src/XPCWrappedNative.cpp
-+++ b/js/xpconnect/src/XPCWrappedNative.cpp
-@@ -2215,10 +2215,9 @@ else if (count == 2 && array[0] == isupp) {
- name = JS_sprintf_append(name, "%s", array[1]->GetNameString());
- } else {
- for (uint16_t i = 0; i < count; i++) {
-- const char* fmt = (i == 0) ?
-- "(%s" : (i == count-1) ?
-- ", %s)" : ", %s";
-- name = JS_sprintf_append(name, fmt,
-+ name = JS_sprintf_append(name, (i == 0) ?
-+ "(%s" : (i == count-1) ?
-+ ", %s)" : ", %s",
- array[i]->GetNameString());
- }
- }