Title: [228568] trunk/Source/WebCore
Revision
228568
Author
[email protected]
Date
2018-02-16 11:35:52 -0800 (Fri, 16 Feb 2018)

Log Message

Unreviewed, fix iOS build after r228562.

* workers/service/server/RegistrationDatabase.cpp:
(WebCore::RegistrationDatabase::openSQLiteDatabase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (228567 => 228568)


--- trunk/Source/WebCore/ChangeLog	2018-02-16 19:34:12 UTC (rev 228567)
+++ trunk/Source/WebCore/ChangeLog	2018-02-16 19:35:52 UTC (rev 228568)
@@ -1,3 +1,10 @@
+2018-02-16  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix iOS build after r228562.
+
+        * workers/service/server/RegistrationDatabase.cpp:
+        (WebCore::RegistrationDatabase::openSQLiteDatabase):
+
 2018-02-16  Zalan Bujtas  <[email protected]>
 
         [RenderTreeBuilder] Move RenderElement::addChild() to RenderTreeBuilder

Modified: trunk/Source/WebCore/workers/service/server/RegistrationDatabase.cpp (228567 => 228568)


--- trunk/Source/WebCore/workers/service/server/RegistrationDatabase.cpp	2018-02-16 19:34:12 UTC (rev 228567)
+++ trunk/Source/WebCore/workers/service/server/RegistrationDatabase.cpp	2018-02-16 19:35:52 UTC (rev 228568)
@@ -110,7 +110,7 @@
         ASSERT_UNUSED(errorMessage, !errorMessage->isNull());
 
 #if RELEASE_LOG_DISABLED
-        LOG_ERROR(ServiceWorker, "Failed to open Service Worker registration database: %s", errorMessage->utf8().data());
+        LOG_ERROR("Failed to open Service Worker registration database: %s", errorMessage->utf8().data());
 #else
         RELEASE_LOG_ERROR(ServiceWorker, "Failed to open Service Worker registration database: %{public}s", errorMessage->utf8().data());
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to