1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-15 18:20:59 +00:00

Fix exec_path_len replacement on OSX

This commit is contained in:
jsteube 2016-09-30 18:55:53 +02:00
parent ae0300dabb
commit d16b6228a6

View File

@ -46,7 +46,7 @@ char *get_exec_path ()
#elif defined (__APPLE__)
size_t size = exec_path_len;
u32 size = (u32) exec_path_len;
if (_NSGetExecutablePath (exec_path, &size) != 0)
{