Title: [143309] trunk/Source/WebCore
Revision
143309
Author
[email protected]
Date
2013-02-19 01:22:23 -0800 (Tue, 19 Feb 2013)

Log Message

Yet anther JSC build fix after r143304.

* bindings/js/JSDOMBinding.h:
(WebCore::argumentOrNull):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143308 => 143309)


--- trunk/Source/WebCore/ChangeLog	2013-02-19 09:00:37 UTC (rev 143308)
+++ trunk/Source/WebCore/ChangeLog	2013-02-19 09:22:23 UTC (rev 143309)
@@ -1,3 +1,10 @@
+2013-02-19  Ryosuke Niwa  <[email protected]>
+
+        Yet anther JSC build fix after r143304.
+
+        * bindings/js/JSDOMBinding.h:
+        (WebCore::argumentOrNull):
+
 2013-02-19  Kentaro Hara  <[email protected]>
 
         Unreviewed build fix. Fixed warning caused by r143305.

Modified: trunk/Source/WebCore/bindings/js/JSDOMBinding.h (143308 => 143309)


--- trunk/Source/WebCore/bindings/js/JSDOMBinding.h	2013-02-19 09:00:37 UTC (rev 143308)
+++ trunk/Source/WebCore/bindings/js/JSDOMBinding.h	2013-02-19 09:22:23 UTC (rev 143309)
@@ -254,7 +254,7 @@
         return mediaList;
     }
 
-    inline JSC::JSValue argumentOrNull(JSC::ExecState* exec, int index)
+    inline JSC::JSValue argumentOrNull(JSC::ExecState* exec, unsigned index)
     {
         return index >= exec->argumentCount() ? JSC::JSValue() : exec->argument(index);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to