Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > cadd73d89ceed494dc51894698938885 > files > 19

chromium-browser-stable-81.0.4044.138-1.mga7.src.rpm

--- chromium-65.0.3325.51/ui/gfx/ipc/buffer_types/gfx_param_traits.cc.format	2018-02-06 21:06:22.000000000 +0100
+++ chromium-65.0.3325.51/ui/gfx/ipc/buffer_types/gfx_param_traits.cc	2018-02-17 02:35:15.445832776 +0100
@@ -30,7 +30,7 @@
 void ParamTraits<gfx::BufferUsageAndFormat>::Log(
     const gfx::BufferUsageAndFormat& p,
     std::string* l) {
-  l->append(base::StringPrintf("(%d, %d)", p.usage, p.format));
+  l->append(base::StringPrintf("(%d, %d)", int(p.usage), int(p.format)));
 }
 
 }  // namespace IPC
--- chromium-65.0.3325.51/components/assist_ranker/ranker_example_util.cc.gcc7	2018-02-06 21:05:28.000000000 +0100
+++ chromium-65.0.3325.51/components/assist_ranker/ranker_example_util.cc	2018-02-17 03:15:17.577865763 +0100
@@ -9,6 +9,8 @@
 #include "base/metrics/metrics_hashes.h"
 #include "base/strings/stringprintf.h"
 
+#include <cmath>
+
 namespace assist_ranker {
 namespace {
 const uint64_t MASK32Bits = (1LL << 32) - 1;
--- chromium-65.0.3325.51/device/vr/util/sample_queue.h.gcc7	2018-02-06 21:05:25.000000000 +0100
+++ chromium-65.0.3325.51/device/vr/util/sample_queue.h	2018-02-17 20:35:26.406726748 +0100
@@ -6,6 +6,7 @@
 
 #include <cstddef>
 #include <vector>
+#include <cstdint>
 
 #include "base/macros.h"
 #include "device/vr/vr_export.h"