Title: [191450] trunk/Source/WebCore
Revision
191450
Author
commit-qu...@webkit.org
Date
2015-10-22 03:50:09 -0700 (Thu, 22 Oct 2015)

Log Message

[EFL] Fix build break since r191439
https://bugs.webkit.org/show_bug.cgi?id=150441

Patch by Joonghun Park <jh718.p...@samsung.com> on 2015-10-22
Reviewed by Csaba Osztrogonác.

No new tests, no new behaviours.

* platform/Logging.cpp:
(WebCore::registerNotifyCallback):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (191449 => 191450)


--- trunk/Source/WebCore/ChangeLog	2015-10-22 09:49:33 UTC (rev 191449)
+++ trunk/Source/WebCore/ChangeLog	2015-10-22 10:50:09 UTC (rev 191450)
@@ -1,3 +1,15 @@
+2015-10-22  Joonghun Park  <jh718.p...@samsung.com>
+
+        [EFL] Fix build break since r191439
+        https://bugs.webkit.org/show_bug.cgi?id=150441
+
+        Reviewed by Csaba Osztrogonác.
+
+        No new tests, no new behaviours.
+
+        * platform/Logging.cpp:
+        (WebCore::registerNotifyCallback):
+
 2015-10-22  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Fix GTK+ build after r191423.

Modified: trunk/Source/WebCore/platform/Logging.cpp (191449 => 191450)


--- trunk/Source/WebCore/platform/Logging.cpp	2015-10-22 09:49:33 UTC (rev 191449)
+++ trunk/Source/WebCore/platform/Logging.cpp	2015-10-22 10:50:09 UTC (rev 191450)
@@ -75,6 +75,9 @@
     notify_register_dispatch(notifyID.utf8().data(), &token, dispatch_get_main_queue(), ^(int) {
         callback();
     });
+#else
+    UNUSED_PARAM(notifyID);
+    UNUSED_PARAM(callback);
 #endif
 }
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to