Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 6883cc1

Browse files
committed
Fix Windows build
1 parent 39c51a6 commit 6883cc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/thread/osthread.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,14 +2020,14 @@ version (Windows)
20202020
Thread obj = cast(Thread) arg;
20212021
assert( obj );
20222022

2023-
obj.dataStorageInit();
2023+
obj.initDataStorage();
20242024

20252025
Thread.setThis(obj);
20262026
Thread.add(obj);
20272027
scope (exit)
20282028
{
20292029
Thread.remove(obj);
2030-
obj.dataStorageDestroy();
2030+
obj.destroyDataStorage();
20312031
}
20322032
Thread.add(&obj.m_main);
20332033

0 commit comments

Comments
 (0)