diff options
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index 808714ee7..fb1f21198 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -18,6 +18,12 @@ #include <sys/stat.h> #include <dirent.h> +#if defined( __GNUC__ ) && !(defined( _WIN32 ) || defined( __MINGW32__ )) +# define HB_WPRINTF(s,v) __attribute__((format(printf,s,v))) +#else +# define HB_WPRINTF(s,v) +#endif + #if defined( SYS_MINGW ) # define fseek fseeko64 # define ftell ftello64 |