Re: [Mesa-dev] [PATCH] gallium/util: use util_snprintf() in u_socket_connect()

2017-10-24 Thread Brian Paul
On 10/24/2017 06:57 AM, Eric Engestrom wrote: On Monday, 2017-10-23 15:27:31 -0600, Brian Paul wrote: Instead of plain snprintf(). To fix the MSVC build. snprintf() is used in various places in Mesa/gallium, but apparently, not in code built with MSVC. Not sure I understand this sentence, bu

Re: [Mesa-dev] [PATCH] gallium/util: use util_snprintf() in u_socket_connect()

2017-10-24 Thread Eric Engestrom
On Monday, 2017-10-23 15:27:31 -0600, Brian Paul wrote: > Instead of plain snprintf(). To fix the MSVC build. > > snprintf() is used in various places in Mesa/gallium, but apparently, > not in code built with MSVC. Not sure I understand this sentence, but the patch is Reviewed-by: Eric Engestrom

[Mesa-dev] [PATCH] gallium/util: use util_snprintf() in u_socket_connect()

2017-10-23 Thread Brian Paul
Instead of plain snprintf(). To fix the MSVC build. snprintf() is used in various places in Mesa/gallium, but apparently, not in code built with MSVC. --- src/gallium/auxiliary/util/u_network.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_net