diff --git a/src/String/string.h b/src/String/string.h index de77539..0b8716e 100644 --- a/src/String/string.h +++ b/src/String/string.h @@ -10,7 +10,7 @@ extern "C" { // doesn't store '\0' at the end typedef struct string{ char* ptr; // char pointer - uint32 length; // amount of chars in ptr value + uint64 length; // amount of chars in ptr value } string; ktid_declare(string);