From: fennecdjay Date: Fri, 15 Mar 2019 23:51:47 +0000 (+0100) Subject: :art: win funcs typo typo X-Git-Tag: nightly~2639 X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=7058e5674f58ba8b8c14a4966e2a309850b15d8e;p=gwion.git :art: win funcs typo typo --- diff --git a/src/plug.c b/src/plug.c index c2a5ea7d..1e5adf66 100644 --- a/src/plug.c +++ b/src/plug.c @@ -39,7 +39,7 @@ struct Plug_ { #include "windows.h" #define DLOPEN(dl, b) LoadLibrary(dl) #define DLSYM(dl, t, a) (t)(intptr_t)GetProcAddress(dl, STR(a)); -#define DLCLOSE(dl) Freelibrary(dl); +#define DLCLOSE(dl) FreeLibrary(dl); #endif ANN static void plug_get(PlugInfo* p, const m_str c) { void* dl = DLOPEN(c, RTLD_LAZY);