Title: [91366] trunk/Source/WebCore
Revision
91366
Author
rn...@webkit.org
Date
2011-07-20 08:38:13 -0700 (Wed, 20 Jul 2011)

Log Message

Speculative build fix after r91355.

* bridge/jni/jsc/JavaInstanceJSC.cpp:
(JavaInstance::invokeMethod):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (91365 => 91366)


--- trunk/Source/WebCore/ChangeLog	2011-07-20 15:27:27 UTC (rev 91365)
+++ trunk/Source/WebCore/ChangeLog	2011-07-20 15:38:13 UTC (rev 91366)
@@ -1,3 +1,10 @@
+2011-07-20  Ryosuke Niwa  <rn...@webkit.org>
+
+        Speculative build fix after r91355.
+
+        * bridge/jni/jsc/JavaInstanceJSC.cpp:
+        (JavaInstance::invokeMethod):
+
 2011-07-20  Tommy Widenflycht  <tom...@google.com>
 
         MediaStream API: Update the tracklists to the latest spec

Modified: trunk/Source/WebCore/bridge/jni/jsc/JavaInstanceJSC.cpp (91365 => 91366)


--- trunk/Source/WebCore/bridge/jni/jsc/JavaInstanceJSC.cpp	2011-07-20 15:27:27 UTC (rev 91365)
+++ trunk/Source/WebCore/bridge/jni/jsc/JavaInstanceJSC.cpp	2011-07-20 15:38:13 UTC (rev 91366)
@@ -171,7 +171,7 @@
     }
 
     const JavaMethod* jMethod = static_cast<const JavaMethod*>(method);
-    LOG(LiveConnect, "JavaInstance::invokeMethod call %s %s on %p", UString(jMethod->name().impl()).utf8().data(), jMethod->signature(), m_instance->m_instance);
+    LOG(LiveConnect, "JavaInstance::invokeMethod call %s %s on %p", UString(jMethod->name().impl()).utf8().data(), jMethod->signature(), m_instance->instance());
 
     Vector<jvalue> jArgs(count);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to