From: Lionel Landwerlin Date: Thu, 5 Jul 2018 10:55:43 +0000 (+0100) Subject: util: u_queue: fix android build error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=78d5c1c82a2c437a70edb62c7217d9284cb99b5f;p=mesa.git util: u_queue: fix android build error mesa/src/util/u_queue.c:242:15: error: address of array 'queue->name' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] Fixes: b238e33bc9d48b814370 "kutil/queue: add a process name into a thread name" Signed-off-by: Lionel Landwerlin Reviewed-by: Eric Engestrom --- diff --git a/src/util/u_queue.c b/src/util/u_queue.c index 8a43320e59f..be95d9eec3f 100644 --- a/src/util/u_queue.c +++ b/src/util/u_queue.c @@ -239,7 +239,7 @@ util_queue_thread_func(void *input) free(input); - if (queue->name) { + if (strlen(queue->name) > 0) { char name[16]; util_snprintf(name, sizeof(name), "%s%i", queue->name, thread_index); u_thread_setname(name);