From d7694136d364364db4cf9d3ce850720efe4f1f4a Mon Sep 17 00:00:00 2001 From: Andres Gomez Date: Wed, 1 Aug 2018 15:55:51 +0300 Subject: [PATCH] kutil/queue: use util_snprintf() in util_queue_init MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/util/u_queue.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/u_queue.c b/src/util/u_queue.c index 4ce1af5..22d2cdd 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; -- 2.7.4