Changeset 249004 in webkit


Ignore:
Timestamp:
Aug 22, 2019 4:41:02 AM (5 years ago)
Author:
clopez@igalia.com
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 clopez@igalia.com <clopez@igalia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> on 2019-08-22

  • MiniBrowser/gtk/main.c:

(main):

  • MiniBrowser/wpe/main.cpp:

(main):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249003 r249004  
     12019-08-22  clopez@igalia.com  <clopez@igalia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
     2
     3        [GTK][WPE] Support for command "--version" on the MiniBrowser (follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=200978
     5
     6        Unreviewed follow-up fix.
     7
     8        Update the string format specifier for unsigned it.
     9
     10        * MiniBrowser/gtk/main.c:
     11        (main):
     12        * MiniBrowser/wpe/main.cpp:
     13        (main):
     14
    1152019-08-22  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    216
  • trunk/Tools/MiniBrowser/gtk/main.c

    r249003 r249004  
    522522
    523523    if (printVersion) {
    524         g_print("WebKitGTK %d.%d.%d\n",
     524        g_print("WebKitGTK %u.%u.%u\n",
    525525            webkit_get_major_version(),
    526526            webkit_get_minor_version(),
  • trunk/Tools/MiniBrowser/wpe/main.cpp

    r249003 r249004  
    171171
    172172    if (printVersion) {
    173         g_print("WPE WebKit %d.%d.%d\n",
     173        g_print("WPE WebKit %u.%u.%u\n",
    174174            webkit_get_major_version(),
    175175            webkit_get_minor_version(),
Note: See TracChangeset for help on using the changeset viewer.