Fixup preprocessor definition

Suggested by @DragonMux
This commit is contained in:
SId Price 2022-06-11 13:02:49 -06:00 committed by Rachel Mant
parent 9f4d50a018
commit 7160bb987b
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ void libusb_exit_function(bmp_info_t *info);
#if defined(_WIN32) || defined(__CYGWIN__) #if defined(_WIN32) || defined(__CYGWIN__)
#include <wchar.h> #include <wchar.h>
#define PRINT_INFO(fmt, ...) wprintf(L(fmt), ##__VA_ARGS__) #define PRINT_INFO(fmt, ...) wprintf(L ## fmt, ##__VA_ARGS__)
#else #else
#include <stdio.h> #include <stdio.h>
#define PRINT_INFO(fmt, ...) printf((fmt), ##__VA_ARGS__) #define PRINT_INFO(fmt, ...) printf((fmt), ##__VA_ARGS__)