Title: [276323] trunk/Tools
Revision
276323
Author
[email protected]
Date
2021-04-20 15:37:05 -0700 (Tue, 20 Apr 2021)

Log Message

[PlayStation] Remove warnings for unused parameter.
https://bugs.webkit.org/show_bug.cgi?id=224830

Reviewed by Darin Adler.

* MiniBrowser/playstation/main.cpp:
(main):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (276322 => 276323)


--- trunk/Tools/ChangeLog	2021-04-20 22:33:49 UTC (rev 276322)
+++ trunk/Tools/ChangeLog	2021-04-20 22:37:05 UTC (rev 276323)
@@ -1,3 +1,13 @@
+2021-04-20  Basuke Suzuki  <[email protected]>
+
+        [PlayStation] Remove warnings for unused parameter.
+        https://bugs.webkit.org/show_bug.cgi?id=224830
+
+        Reviewed by Darin Adler.
+
+        * MiniBrowser/playstation/main.cpp:
+        (main):
+
 2021-04-20  Kimmo Kinnunen  <[email protected]>
 
         gtest.a exports symbols, causing link-time warning: direct access in function ... means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.

Modified: trunk/Tools/MiniBrowser/playstation/main.cpp (276322 => 276323)


--- trunk/Tools/MiniBrowser/playstation/main.cpp	2021-04-20 22:33:49 UTC (rev 276322)
+++ trunk/Tools/MiniBrowser/playstation/main.cpp	2021-04-20 22:37:05 UTC (rev 276323)
@@ -71,7 +71,7 @@
     }
 };
 
-int main(int argc, char *argv[])
+int main(int, char *[])
 {
     WKRunLoopInitializeMain();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to