diff options
Diffstat (limited to 'source/core/slang-shared-library.cpp')
| -rw-r--r-- | source/core/slang-shared-library.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core/slang-shared-library.cpp b/source/core/slang-shared-library.cpp index 716f570c4..20d457840 100644 --- a/source/core/slang-shared-library.cpp +++ b/source/core/slang-shared-library.cpp @@ -106,10 +106,10 @@ SlangResult ConfigurableSharedLibraryLoader::loadSharedLibrary(const char* path, // Okay we need to reconstruct the name and insert the path StringBuilder builder; SharedLibrary::appendPlatformFileName(UnownedStringSlice(pathIn), builder); - String path = Path::Combine(entryString, builder); + String path = Path::combine(entryString, builder); return SharedLibrary::loadWithPlatformFilename(path.begin(), handleOut); } -}
\ No newline at end of file +} |
