diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-06-10 12:29:14 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2014-06-10 12:29:14 -0700 |
commit | 546f353e7f562fdbcf59980bcb7dc11567658aa3 (patch) | |
tree | 1fdcdedb18636797fd55868041e538a9d068d09d /libs/hwui/renderthread/RenderProxy.cpp | |
parent | cc8f7ae682f3ce1ed82a7850433d4502245bdcb4 (diff) |
hwui: 64-bit compile issue
Change-Id: Ic3e3dbc6cde4bc58b23a8ab267b0868f370ad149
Diffstat (limited to 'libs/hwui/renderthread/RenderProxy.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderProxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/renderthread/RenderProxy.cpp b/libs/hwui/renderthread/RenderProxy.cpp index ded10a1157ea..4988f1940b6b 100644 --- a/libs/hwui/renderthread/RenderProxy.cpp +++ b/libs/hwui/renderthread/RenderProxy.cpp @@ -47,7 +47,7 @@ namespace renderthread { #define SETUP_TASK(method) \ LOG_ALWAYS_FATAL_IF( METHOD_INVOKE_PAYLOAD_SIZE < sizeof(ARGS(method)), \ - "METHOD_INVOKE_PAYLOAD_SIZE %d is smaller than sizeof(" #method "Args) %d", \ + "METHOD_INVOKE_PAYLOAD_SIZE %zu is smaller than sizeof(" #method "Args) %zu", \ METHOD_INVOKE_PAYLOAD_SIZE, sizeof(ARGS(method))); \ MethodInvokeRenderTask* task = new MethodInvokeRenderTask((RunnableMethod) Bridge_ ## method); \ ARGS(method) *args = (ARGS(method) *) task->payload() |