From 7160bb987b92db649f1bea19e7295ef6d4699fc4 Mon Sep 17 00:00:00 2001 From: SId Price Date: Sat, 11 Jun 2022 13:02:49 -0600 Subject: [PATCH] Fixup preprocessor definition Suggested by @DragonMux --- src/platforms/hosted/bmp_hosted.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/hosted/bmp_hosted.h b/src/platforms/hosted/bmp_hosted.h index fc88915..65eefcf 100644 --- a/src/platforms/hosted/bmp_hosted.h +++ b/src/platforms/hosted/bmp_hosted.h @@ -51,7 +51,7 @@ void libusb_exit_function(bmp_info_t *info); #if defined(_WIN32) || defined(__CYGWIN__) #include -#define PRINT_INFO(fmt, ...) wprintf(L(fmt), ##__VA_ARGS__) +#define PRINT_INFO(fmt, ...) wprintf(L ## fmt, ##__VA_ARGS__) #else #include #define PRINT_INFO(fmt, ...) printf((fmt), ##__VA_ARGS__)