Title: [141180] trunk/Source/WebKit2
Revision
141180
Author
[email protected]
Date
2013-01-29 16:43:55 -0800 (Tue, 29 Jan 2013)

Log Message

Fix erroneous semicolon causing build failure: if statement has empty body [-Werror,-Wempty-body]
https://bugs.webkit.org/show_bug.cgi?id=108241

Patch by Kiran Muppala <[email protected]> on 2013-01-29
Reviewed by Anders Carlsson.

* UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::addExistingWebPage): Remove erroneous
semicolon following the if condition.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (141179 => 141180)


--- trunk/Source/WebKit2/ChangeLog	2013-01-30 00:36:50 UTC (rev 141179)
+++ trunk/Source/WebKit2/ChangeLog	2013-01-30 00:43:55 UTC (rev 141180)
@@ -1,3 +1,14 @@
+2013-01-29  Kiran Muppala  <[email protected]>
+
+        Fix erroneous semicolon causing build failure: if statement has empty body [-Werror,-Wempty-body]
+        https://bugs.webkit.org/show_bug.cgi?id=108241
+
+        Reviewed by Anders Carlsson.
+
+        * UIProcess/WebProcessProxy.cpp:
+        (WebKit::WebProcessProxy::addExistingWebPage): Remove erroneous
+        semicolon following the if condition.
+
 2013-01-29  Anders Carlsson  <[email protected]>
 
         Remove almost everything from MessageID

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp (141179 => 141180)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2013-01-30 00:36:50 UTC (rev 141179)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2013-01-30 00:43:55 UTC (rev 141180)
@@ -188,7 +188,7 @@
     m_pageMap.set(pageID, webPage);
     globalPageMap().set(pageID, webPage);
 #if PLATFORM(MAC)
-    if (pageIsProcessSuppressible(webPage));
+    if (pageIsProcessSuppressible(webPage))
         m_processSuppressiblePages.add(pageID);
     updateProcessSuppressionState();
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to