1
mirror of https://github.com/hashcat/hashcat synced 2024-11-20 23:27:31 +01: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)
{