Overview
| Comment: | OFTLSKey.m: Fix typo |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
48a536b2a43ce35602b0522c9372a8a1 |
| User & Date: | js on 2021-07-25 17:18:35 |
| Other Links: | manifest | tags |
Context
|
2021-08-07
| ||
| 22:51 | OFSystemInfo: Use if (@available(...)) (check-in: f372f73c49 user: js tags: trunk) | |
|
2021-07-25
| ||
| 17:38 | Merge trunk into branch "amiga-library" (check-in: 9e80543412 user: js tags: amiga-library) | |
| 17:18 | OFTLSKey.m: Fix typo (check-in: 48a536b2a4 user: js tags: trunk) | |
|
2021-07-13
| ||
| 17:52 | Change version from 1.1-dev to 1.1 (check-in: 8fb4f1bfce user: js tags: trunk) | |
Changes
Modified src/OFTLSKey.m from [d2717c869a] to [15b8d20ff8].
| ︙ | ︙ | |||
18 19 20 21 22 23 24 | #include "platform.h" #if defined(OF_HAVE_PTHREADS) # include "platform/POSIX/OFTLSKey.m" #elif defined(OF_WINDOWS) # include "platform/Windows/OFTLSKey.m" #elif defined(OF_MORPHOS) | | | 18 19 20 21 22 23 24 25 26 27 28 | #include "platform.h" #if defined(OF_HAVE_PTHREADS) # include "platform/POSIX/OFTLSKey.m" #elif defined(OF_WINDOWS) # include "platform/Windows/OFTLSKey.m" #elif defined(OF_MORPHOS) # include "platform/MorphOS/OFTLSKey.m" #elif defined(OF_AMIGAOS) # include "platform/AmigaOS/OFTLSKey.m" #endif |