Title: [273481] trunk/Source/WebCore
- Revision
- 273481
- Author
- [email protected]
- Date
- 2021-02-25 06:39:04 -0800 (Thu, 25 Feb 2021)
Log Message
Unreviewed, WPE/GTK build warning fix after r273311
* platform/graphics/gstreamer/eme/CDMThunder.cpp:
(WebCore::CDMFactoryThunder::supportedKeySystems const): Use size_t format specifier in logging statement.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (273480 => 273481)
--- trunk/Source/WebCore/ChangeLog 2021-02-25 09:48:57 UTC (rev 273480)
+++ trunk/Source/WebCore/ChangeLog 2021-02-25 14:39:04 UTC (rev 273481)
@@ -1,3 +1,10 @@
+2021-02-25 Philippe Normand <[email protected]>
+
+ Unreviewed, WPE/GTK build warning fix after r273311
+
+ * platform/graphics/gstreamer/eme/CDMThunder.cpp:
+ (WebCore::CDMFactoryThunder::supportedKeySystems const): Use size_t format specifier in logging statement.
+
2021-02-25 Ryosuke Niwa <[email protected]>
Avoid tree traversals to look for form and canvas elements
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp (273480 => 273481)
--- trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp 2021-02-25 09:48:57 UTC (rev 273480)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp 2021-02-25 14:39:04 UTC (rev 273481)
@@ -131,7 +131,7 @@
GST_WARNING("Thunder is up-ranked as preferred decryptor but Thunder is not supporting any encryption system. Is "
"Thunder running? Are the plugins built?");
#endif
- GST_DEBUG("%u supported key systems", supportedKeySystems.size());
+ GST_DEBUG("%zu supported key systems", supportedKeySystems.size());
};
return supportedKeySystems;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes