diff options
| author | Stephen Hines <srhines@google.com> | 2012-05-16 18:01:34 -0700 |
|---|---|---|
| committer | Stephen Hines <srhines@google.com> | 2012-05-16 18:01:34 -0700 |
| commit | 06883b71d0b75eee255b292ba66684eddc5fb172 (patch) | |
| tree | 2f5541e8a2656bd78fb67d6eecb7216c3bf1bd80 | |
| parent | 177063a324951be84c46f0758f71143758a71e93 (diff) | |
| download | frameworks_base-06883b71d0b75eee255b292ba66684eddc5fb172.zip frameworks_base-06883b71d0b75eee255b292ba66684eddc5fb172.tar.gz frameworks_base-06883b71d0b75eee255b292ba66684eddc5fb172.tar.bz2 | |
Fix incorrect Log message.
Change-Id: Ib05813c28a16e1bfe2186b068e1baf13782ae5b9
| -rw-r--r-- | graphics/jni/android_renderscript_RenderScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/jni/android_renderscript_RenderScript.cpp b/graphics/jni/android_renderscript_RenderScript.cpp index 3d5d1a9..8c8ff4d 100644 --- a/graphics/jni/android_renderscript_RenderScript.cpp +++ b/graphics/jni/android_renderscript_RenderScript.cpp @@ -489,7 +489,7 @@ nAllocationGetSurfaceTextureID2(JNIEnv *_env, jobject _this, RsContext con, jint static void nAllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur) { - LOG_API("nAllocationSetSurfaceTexture, con(%p), alloc(%p), surface(%p)", + LOG_API("nAllocationSetSurface, con(%p), alloc(%p), surface(%p)", con, alloc, (Surface *)sur); sp<Surface> s; |
