We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0502f97 commit 18e1fb6Copy full SHA for 18e1fb6
1 file changed
src/luadriver.c
@@ -232,7 +232,7 @@ int main(int argc, char** argv) {
232
#if defined(_WIN32) || defined(_WIN64)
233
HMODULE luacxt;
234
check_error((luacxt = LoadLibrary(ARGS.luaver == 0 ? DEFAULT_LUA : luastr)) == 0, "Could not find the LuaConsole library! (Default: " DEFAULT_LUA ")");
235
- _luacon_loaddll = (luacon_loaddll*) GetProcAddress(luacxt, "luacon_loaddll");
+ _luacon_loaddll = (luacon_loaddll) GetProcAddress(luacxt, "luacon_loaddll");
236
#else
237
void* luacxt;
238
luacxt = dlopen(ARGS.luaver == 0 ? DEFAULT_LUA : luastr, RTLD_LAZY);
0 commit comments