Title: [147885] trunk/Source/WebKit/efl
Revision
147885
Author
[email protected]
Date
2013-04-07 16:41:17 -0700 (Sun, 07 Apr 2013)

Log Message

[EFL] --minimal build fails with error: expected `;' before `return'
https://bugs.webkit.org/show_bug.cgi?id=113953

Unreviewed.

Patch by Ed Bartosh <[email protected]> on 2013-04-07

* ewk/ewk_security_origin.cpp:
(ewk_security_origin_web_database_quota_get): Added missing semicolon.

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (147884 => 147885)


--- trunk/Source/WebKit/efl/ChangeLog	2013-04-07 23:00:28 UTC (rev 147884)
+++ trunk/Source/WebKit/efl/ChangeLog	2013-04-07 23:41:17 UTC (rev 147885)
@@ -1,3 +1,13 @@
+2013-04-07  Ed Bartosh  <[email protected]>
+
+        [EFL] --minimal build fails with error: expected `;' before `return'
+        https://bugs.webkit.org/show_bug.cgi?id=113953
+
+        Unreviewed.
+
+        * ewk/ewk_security_origin.cpp:
+        (ewk_security_origin_web_database_quota_get): Added missing semicolon.
+
 2013-04-05  Geoffrey Garen  <[email protected]>
 
         Made USE(JSC) unconditional

Modified: trunk/Source/WebKit/efl/ewk/ewk_security_origin.cpp (147884 => 147885)


--- trunk/Source/WebKit/efl/ewk/ewk_security_origin.cpp	2013-04-07 23:00:28 UTC (rev 147884)
+++ trunk/Source/WebKit/efl/ewk/ewk_security_origin.cpp	2013-04-07 23:41:17 UTC (rev 147885)
@@ -81,7 +81,7 @@
 
     return WebCore::DatabaseManager::manager().quotaForOrigin(origin->securityOrigin.get());
 #else
-    UNUSED_PARAM(origin)
+    UNUSED_PARAM(origin);
     return 0;
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to