[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

hausmann at webkit.org hausmann at webkit.org
Thu Oct 29 20:36:44 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 6c9c63f44cb17b4b017b1ffba4ee3e53d50d9e59
Author: hausmann at webkit.org <hausmann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 30 07:48:40 2009 +0000

    Fix CRASH() macro for Symbian build.
    
    Patch by Janne Koskinen <janne.p.koskinen at digia.com> on 2009-09-30
    Reviewed by Simon Hausmann.
    
    * wtf/Assertions.h: Added missing }
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48922 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 3bf2adf..ece33cd 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,11 @@
+2009-09-30  Janne Koskinen  <janne.p.koskinen at digia.com> 
+
+        Reviewed by Simon Hausmann.
+
+        Fix CRASH() macro for Symbian build.
+
+        * wtf/Assertions.h: Added missing }
+
 2009-09-29  Geoffrey Garen  <ggaren at apple.com>
 
         Reviewed by Gavin Barraclough.
diff --git a/JavaScriptCore/wtf/Assertions.h b/JavaScriptCore/wtf/Assertions.h
index 9f67d59..e3340f1 100644
--- a/JavaScriptCore/wtf/Assertions.h
+++ b/JavaScriptCore/wtf/Assertions.h
@@ -129,7 +129,7 @@ void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChann
 #define CRASH() do { \
     __DEBUGGER(); \
     User::Panic(_L("Webkit CRASH"),0); \
-    while(false)
+    } while(false)
 #else
 #define CRASH() do { \
     *(int *)(uintptr_t)0xbbadbeef = 0; \

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list