aboutsummaryrefslogtreecommitdiff
path: root/core/thread
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-01-02 15:41:32 +0000
committergingerBill <bill@gingerbill.org>2020-01-02 15:41:32 +0000
commit93ead4bcb33dd0592794b0acbc1ba6832d0a4f89 (patch)
treefb414ec052d5e47048771be103ec2cdb7ddfe71e /core/thread
parentbbe9b4dee0d847f25e1ef0c41dac459efb8fa6ef (diff)
Fix typo
Diffstat (limited to 'core/thread')
-rw-r--r--core/thread/thread_unix.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread/thread_unix.odin b/core/thread/thread_unix.odin
index 15f345c7c..dd8230ade 100644
--- a/core/thread/thread_unix.odin
+++ b/core/thread/thread_unix.odin
@@ -158,5 +158,5 @@ destroy :: proc(t: ^Thread) {
yield :: proc() {
- unix.pthread_yield()
+ unix.pthread_yield();
}