mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
Fix %m with MinGW
This commit is contained in:
parent
f27675a0ec
commit
66d4eea649
@ -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, ...)
|
||||
|
Loading…
Reference in New Issue
Block a user