[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

ukai at chromium.org ukai at chromium.org
Wed Dec 22 11:55:05 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e9ee0307d56d3c2c0dc1794970930999b736fbd6
Author: ukai at chromium.org <ukai at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 11 08:46:33 2010 +0000

    2010-08-11  Fumitoshi Ukai  <ukai at chromium.org>
    
            Unreviewed build fix of Leopard Intel Debug (Build)
    
            * websockets/WebSocketChannel.cpp:
            (WebCore::WebSocketChannel::processBuffer): use %lu, instead of %ul
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65140 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index cf030ae..1cf2780 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-11  Fumitoshi Ukai  <ukai at chromium.org>
+
+        Unreviewed build fix of Leopard Intel Debug (Build)
+
+        * websockets/WebSocketChannel.cpp:
+        (WebCore::WebSocketChannel::processBuffer): use %lu, instead of %ul
+
 2010-08-11  Alejandro G. Castro  <alex at igalia.com>
 
         Reviewed by Dirk Schulze.
diff --git a/WebCore/websockets/WebSocketChannel.cpp b/WebCore/websockets/WebSocketChannel.cpp
index e924b91..ea36364 100644
--- a/WebCore/websockets/WebSocketChannel.cpp
+++ b/WebCore/websockets/WebSocketChannel.cpp
@@ -255,7 +255,7 @@ bool WebSocketChannel::processBuffer()
             LOG(Network, "WebSocketChannel %p connected", this);
             skipBuffer(headerLength);
             m_client->didConnect();
-            LOG(Network, "remaining in read buf %ul", m_bufferSize);
+            LOG(Network, "remaining in read buf %lu", m_bufferSize);
             return m_buffer;
         }
         LOG(Network, "WebSocketChannel %p connection failed", this);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list