summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/PEFSharedObjectRT.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 12:35:19 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 12:39:24 +0100
commit4c714f2c24c5df78bae2f35c42c73107de4c8c71 (patch)
treeb36d2498b8387909dac45c98097b8169636ad25a /Private/Source/PEFSharedObjectRT.cxx
parenta4bfc396a78ddd553de519ab927d8479d0c3c45d (diff)
unstable, unrelated: See below.
- :boom: Breaking changes in System.Core.dll - Framebuffer, moved operator bool into c++ source file. - Remove zlib in favor of our own Zip API. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/Source/PEFSharedObjectRT.cxx')
-rw-r--r--Private/Source/PEFSharedObjectRT.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/Source/PEFSharedObjectRT.cxx b/Private/Source/PEFSharedObjectRT.cxx
index d404819f..06c5813c 100644
--- a/Private/Source/PEFSharedObjectRT.cxx
+++ b/Private/Source/PEFSharedObjectRT.cxx
@@ -18,7 +18,7 @@
Revision History:
- 01/02/24: Rework shared library ABI, except a __LibInit and __LibFini
+ 01/02/24: Rework shared library ABI, except a rt_library_init and rt_library_free
(amlel)
15/02/24: Breaking changes, changed the name of the routines. (amlel)
@@ -44,7 +44,7 @@ EXTERN_C SharedObjectPtr rt_library_init(void) {
return nullptr;
}
- library->Mount(tls_new_class<SharedObject::SharedObjectTraits>());
+ library->Mount(tls_new_class<SharedObject::SharedObjectTrait>());
if (!library->Get()) {
ProcessManager::Shared().Leak().GetCurrent().Leak().Crash();