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

kbr at google.com kbr at google.com
Wed Dec 22 18:26:30 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 84870ae2df3fab2990bddf8060000b31aa33ce74
Author: kbr at google.com <kbr at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 10 23:14:28 2010 +0000

    2010-12-10  Kenneth Russell  <kbr at google.com>
    
            Unreviewed, build fix. Change #ifndef NDEBUG to #ifdef NDEBUG.
    
            * platform/graphics/opengl/Extensions3DOpenGL.cpp:
            (WebCore::Extensions3DOpenGL::ensureEnabled):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73809 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index ecfbcd3..359b64d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-12-10  Kenneth Russell  <kbr at google.com>
 
+        Unreviewed, build fix. Change #ifndef NDEBUG to #ifdef NDEBUG.
+
+        * platform/graphics/opengl/Extensions3DOpenGL.cpp:
+        (WebCore::Extensions3DOpenGL::ensureEnabled):
+
+2010-12-10  Kenneth Russell  <kbr at google.com>
+
         Reviewed by James Robinson.
 
         Implement extension entry points and remove EXTENSIONS enum
diff --git a/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp b/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
index 510a705..f6bc9aa 100644
--- a/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
+++ b/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp
@@ -87,7 +87,7 @@ bool Extensions3DOpenGL::supports(const String& name)
 
 void Extensions3DOpenGL::ensureEnabled(const String& name)
 {
-#ifndef NDEBUG
+#ifdef NDEBUG
     UNUSED_PARAM(name);
 #endif
     ASSERT(supports(name));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list