Title: [177439] trunk/Tools
Revision
177439
Author
commit-qu...@webkit.org
Date
2014-12-17 00:45:22 -0800 (Wed, 17 Dec 2014)

Log Message

[EFL]Fix build warning in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=139723

Patch by Hunseop Jeong <hs85.je...@samsung.com> on 2014-12-17
Reviewed by Darin Adler.

The warning is caused by the compiler wanting the first argument to be a
string literal, not a dynamically created string.

* MiniBrowser/efl/main.c:
(quit):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (177438 => 177439)


--- trunk/Tools/ChangeLog	2014-12-17 08:28:51 UTC (rev 177438)
+++ trunk/Tools/ChangeLog	2014-12-17 08:45:22 UTC (rev 177439)
@@ -1,3 +1,16 @@
+2014-12-17  Hunseop Jeong  <hs85.je...@samsung.com>
+
+        [EFL]Fix build warning in MiniBrowser
+        https://bugs.webkit.org/show_bug.cgi?id=139723
+
+        Reviewed by Darin Adler.
+
+        The warning is caused by the compiler wanting the first argument to be a
+        string literal, not a dynamically created string.
+
+        * MiniBrowser/efl/main.c:
+        (quit):
+
 2014-12-16  Sam Weinig  <s...@webkit.org>
 
         TestWebKitAPI should use a static lib to support both Mac and iOS cleanly

Modified: trunk/Tools/MiniBrowser/efl/main.c (177438 => 177439)


--- trunk/Tools/MiniBrowser/efl/main.c	2014-12-17 08:28:51 UTC (rev 177438)
+++ trunk/Tools/MiniBrowser/efl/main.c	2014-12-17 08:45:22 UTC (rev 177439)
@@ -985,7 +985,7 @@
 quit(Eina_Bool success, const char *msg)
 {
     if (msg)
-        success ? INFO(msg) : ERROR(msg);
+        success ? INFO("%s", msg) : ERROR("%s", msg);
 
     eina_log_domain_unregister(_log_domain_id);
     ewk_shutdown();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to