Skip to content

Commit 6d217a3

Browse files
committed
Fix typo
1 parent 3a5d2c4 commit 6d217a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gm_dotnet_native/dotnethelper-src/dotnethelper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ std::string hosfxr_path = "garrysmod/lua/bin/dotnet/host/fxr/" + std::string(NET
4646
#ifdef WIN32
4747
void* hostfxr_library_handle = LoadLibraryA((hosfxr_path + "/hostfxr.dll").c_str());
4848
#elif __APPLE__
49-
void* hostfxr_library_handle = dlopen((hosfxr_path + "/libhostfxr.dylib").c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_LOCAL);
49+
void* hostfxr_library_handle = dlopen((hosfxr_path + "/libhostfxr.dylib").c_str(), RTLD_LAZY | RTLD_LOCAL);
5050
#elif __gnu_linux__
5151
void* hostfxr_library_handle = dlopen((hosfxr_path + "/libhostfxr.so").c_str(), RTLD_LAZY);
5252
#endif

0 commit comments

Comments
 (0)