From 66d4eea64944ead3c00219affd22772f7d280bbf Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 3 Dec 2016 17:38:27 -0800 Subject: [PATCH] Fix %m with MinGW --- src/event.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/event.c b/src/event.c index 82386dc7f..1a87af1e5 100644 --- a/src/event.c +++ b/src/event.c @@ -56,7 +56,11 @@ void event_call (const u32 id, hashcat_ctx_t *hashcat_ctx, const void *buf, cons __attribute__ ((format (printf, 1, 0))) static int event_log (const char *fmt, va_list ap, char *s, const size_t sz) { +#if defined (__MINGW32__) + return __mingw_vsnprintf (s, sz, fmt, ap); +#else return vsnprintf (s, sz, fmt, ap); +#endif } size_t event_log_info_nn (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...)