Title: [249004] trunk/Tools
Revision
249004
Author
[email protected]
Date
2019-08-22 04:41:02 -0700 (Thu, 22 Aug 2019)

Log Message

[GTK][WPE] Support for command "--version" on the MiniBrowser (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=200978

Unreviewed follow-up fix.

Update the string format specifier for unsigned it.

Patch by [email protected] <[email protected]@268f45cc-cd09-0410-ab3c-d52691b4dbfc> on 2019-08-22

* MiniBrowser/gtk/main.c:
(main):
* MiniBrowser/wpe/main.cpp:
(main):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (249003 => 249004)


--- trunk/Tools/ChangeLog	2019-08-22 11:18:58 UTC (rev 249003)
+++ trunk/Tools/ChangeLog	2019-08-22 11:41:02 UTC (rev 249004)
@@ -1,3 +1,17 @@
+2019-08-22  [email protected]  <[email protected]@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
+
+        [GTK][WPE] Support for command "--version" on the MiniBrowser (follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=200978
+
+        Unreviewed follow-up fix.
+
+        Update the string format specifier for unsigned it.
+
+        * MiniBrowser/gtk/main.c:
+        (main):
+        * MiniBrowser/wpe/main.cpp:
+        (main):
+
 2019-08-22  Carlos Alberto Lopez Perez  <[email protected]>
 
         [GTK][WPE] Support for command "--version" on the MiniBrowser

Modified: trunk/Tools/MiniBrowser/gtk/main.c (249003 => 249004)


--- trunk/Tools/MiniBrowser/gtk/main.c	2019-08-22 11:18:58 UTC (rev 249003)
+++ trunk/Tools/MiniBrowser/gtk/main.c	2019-08-22 11:41:02 UTC (rev 249004)
@@ -521,7 +521,7 @@
     g_option_context_free (context);
 
     if (printVersion) {
-        g_print("WebKitGTK %d.%d.%d\n",
+        g_print("WebKitGTK %u.%u.%u\n",
             webkit_get_major_version(),
             webkit_get_minor_version(),
             webkit_get_micro_version());

Modified: trunk/Tools/MiniBrowser/wpe/main.cpp (249003 => 249004)


--- trunk/Tools/MiniBrowser/wpe/main.cpp	2019-08-22 11:18:58 UTC (rev 249003)
+++ trunk/Tools/MiniBrowser/wpe/main.cpp	2019-08-22 11:41:02 UTC (rev 249004)
@@ -170,7 +170,7 @@
     g_option_context_free(context);
 
     if (printVersion) {
-        g_print("WPE WebKit %d.%d.%d\n",
+        g_print("WPE WebKit %u.%u.%u\n",
             webkit_get_major_version(),
             webkit_get_minor_version(),
             webkit_get_micro_version());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to