From ae7aa8dbaf7c65a8b0d86713530a751b7d2f10b0 Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Mon, 8 May 2017 13:34:53 -0400 Subject: [PATCH] nir: fix (hopefully) windows build Fixes: 53aa109b ("nir: add pass to lower atomic counters to SSBO") Signed-off-by: Rob Clark --- src/compiler/nir/nir.h | 4 ++++ src/compiler/nir/nir_print.c | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index b6bc3fa7c20..2a9ab542f6e 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -47,6 +47,10 @@ #include "nir_opcodes.h" +#if defined(_WIN32) && !defined(snprintf) +#define snprintf _snprintf +#endif + #ifdef __cplusplus extern "C" { #endif diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index e6c5c9c830d..dfdb5f36191 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -31,10 +31,6 @@ #include #include /* for PRIx64 macro */ -#if defined(_WIN32) && !defined(snprintf) -#define snprintf _snprintf -#endif - static void print_tabs(unsigned num_tabs, FILE *fp) { -- 2.30.2