From: Andres Gomez Date: Wed, 1 Aug 2018 12:55:51 +0000 (+0300) Subject: kutil/queue: use util_snprintf() in util_queue_init X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7694136d364364db4cf9d3ce850720efe4f1f4a;p=mesa.git kutil/queue: use util_snprintf() in util_queue_init Instead of plain snprintf(). To fix the MSVC 2013 build: Compiling src\util\u_queue.c ... u_queue.c src\util\u_queue.c(325) : warning C4013: 'snprintf' undefined; assuming extern returning int ... mesautil.lib(u_queue.obj) : error LNK2001: unresolved external symbol _snprintf scons: building terminated because of errors. Fixes: b238e33bc9d ("kutil/queue: add a process name into a thread name") Cc: Marek Olšák Cc: Brian Paul Cc: Roland Scheidegger Cc: Timothy Arceri Cc: Eric Engestrom Signed-off-by: Andres Gomez Reviewed-by: Brian Paul --- diff --git a/src/util/u_queue.c b/src/util/u_queue.c index 4ce1af518b3..22d2cdd0fa2 100644 --- a/src/util/u_queue.c +++ b/src/util/u_queue.c @@ -322,10 +322,10 @@ util_queue_init(struct util_queue *queue, memset(queue, 0, sizeof(*queue)); if (process_len) { - snprintf(queue->name, sizeof(queue->name), "%.*s:%s", - process_len, process_name, name); + util_snprintf(queue->name, sizeof(queue->name), "%.*s:%s", + process_len, process_name, name); } else { - snprintf(queue->name, sizeof(queue->name), "%s", name); + util_snprintf(queue->name, sizeof(queue->name), "%s", name); } queue->flags = flags;