From: Gabriele 'matrix' Gristina Date: Mon, 1 Feb 2016 12:07:14 +0000 (+0100) Subject: Fixed HC_LOAD_FUNC macro X-Git-Tag: v3.00-beta~416^2 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=0f159d42e66c24e1657aee67d12eb1c4b7488b44;p=hashcat.git Fixed HC_LOAD_FUNC macro --- diff --git a/include/shared.h b/include/shared.h index 48d29d0..27fbea4 100644 --- a/include/shared.h +++ b/include/shared.h @@ -64,10 +64,10 @@ ptr->name = (type) hc_dlsym (ptr->lib, #name); \ if (!ptr->name) { \ if (noerr == 1) { \ - log_error ("ERROR: #name is missing from #libname shared library."); \ + log_error ("ERROR: %s is missing from %s shared library.", #name, #libname); \ exit (-1); \ } else { \ - log_info ("WARNING: #name is missing from #libname shared library."); \ + log_info ("WARNING: %s is missing from %s shared library.", #name, #libname); \ return (-1); \ } \ }