aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-10-10 23:43:31 +0100
committerGinger Bill <bill@gingerbill.org>2017-10-10 23:43:31 +0100
commit42312d9def0d7d99e124e95645d8cfdaaf1e1ee8 (patch)
treeac203d0a8dbe4a90151e2eb78c4d2eee224e4f94
parent065d0e4ee355b5eb728d81c2c14120ec1500d651 (diff)
Fix typos in c.odin
-rw-r--r--core/c.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/c.odin b/core/c.odin
index fbfb35a74..0737c55ac 100644
--- a/core/c.odin
+++ b/core/c.odin
@@ -5,10 +5,10 @@ c_bool :: bool;
c_char :: u8;
c_schar :: i8;
-c_uchar :: i8;
+c_uchar :: u8;
c_short :: i16;
-c_ushort :: i16;
+c_ushort :: u16;
c_int :: i32;
c_uint :: u32;