[Mesa-dev] [RESEND PATCH v5 1/3] gallium/util: Fix build error due to cast to different size

Robert Foss robert.foss at collabora.com
Mon Jun 25 11:39:23 UTC 2018


Signed-off-by: Robert Foss <robert.foss at collabora.com>
Reviewed-by: Tomasz Figa <tfiga at chromium.org>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>
---

Changes since v4:
 - Added r-b from Marek

Changes since v3:
 - Added r-b from Tomasz


 src/gallium/auxiliary/util/u_debug_stack_android.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_debug_stack_android.cpp b/src/gallium/auxiliary/util/u_debug_stack_android.cpp
index b3d56aebe6..395a1fe911 100644
--- a/src/gallium/auxiliary/util/u_debug_stack_android.cpp
+++ b/src/gallium/auxiliary/util/u_debug_stack_android.cpp
@@ -49,10 +49,10 @@ debug_backtrace_capture(debug_stack_frame *mesa_backtrace,
       backtrace_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
                                                 _mesa_key_pointer_equal);
 
-   backtrace_entry = _mesa_hash_table_search(backtrace_table, (void*) tid);
+   backtrace_entry = _mesa_hash_table_search(backtrace_table, (void*) (uintptr_t)tid);
    if (!backtrace_entry) {
       backtrace = Backtrace::Create(getpid(), tid);
-      _mesa_hash_table_insert(backtrace_table, (void*) tid, backtrace);
+      _mesa_hash_table_insert(backtrace_table, (void*) (uintptr_t)tid, backtrace);
    } else {
       backtrace = (Backtrace *) backtrace_entry->data;
    }
-- 
2.17.1



More information about the mesa-dev mailing list