mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
replaced void* with unsigned char* everywhere
This commit is contained in:
@@ -392,7 +392,7 @@ int test_compiler_expressions(Toy_Bucket** bucketHandle) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
void* data = jumps + 4;
|
||||
unsigned char* data = jumps + 4;
|
||||
|
||||
//check data
|
||||
if (
|
||||
@@ -1179,7 +1179,7 @@ int test_compiler_keywords(Toy_Bucket** bucketHandle) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
void* data = jumps + 4;
|
||||
unsigned char* data = jumps + 4;
|
||||
|
||||
//check data
|
||||
if (
|
||||
@@ -1286,7 +1286,7 @@ int test_compiler_keywords(Toy_Bucket** bucketHandle) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
void* data = jumps + 4;
|
||||
unsigned char* data = jumps + 4;
|
||||
|
||||
//check data
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user