[Mesa-dev] [PATCH v3 1/3] gallium/util: Fix build error due to cast to different size
Tomasz Figa
tfiga at chromium.org
Thu Jun 14 06:31:07 UTC 2018
Hi Rob,
On Sun, Jun 10, 2018 at 2:28 AM Robert Foss <robert.foss at collabora.com> wrote:
>
> Signed-off-by: Robert Foss <robert.foss at collabora.com>
> ---
> 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
>
FWIW,
Reviewed-by: Tomasz Figa <tfiga at chromium.org>
Best regards,
Tomasz
More information about the mesa-dev
mailing list