aboutsummaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 62eadb5..14c5846 100755
--- a/main.py
+++ b/main.py
@@ -48,11 +48,11 @@ def type_resolver(elem, elem_list):
elif type_str == "bool":
return "uint8_t"
elif type_str == "uchar":
- return "int8_t"
+ return "uint8_t"
elif type_str == "schar":
return "schar_t"
elif type_str == "string":
- return "char*"
+ return "unsigned char*"
elif type_str == "FT::conditional":
return "void*"
elif type_str.find("self::") == 0: