From 7058e5674f58ba8b8c14a4966e2a309850b15d8e Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sat, 16 Mar 2019 00:51:47 +0100 Subject: [PATCH] :art: win funcs typo typo --- src/plug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.43.0