[Script] Make printf accept multiple args

This commit is contained in:
Such Meme, Many Skill
2020-04-15 22:02:19 +02:00
parent 28fb01b155
commit e24f8ad722
3 changed files with 21 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ u32 splitargs(char* in) {
argv = calloc(count + 1, sizeof(char*));
for (i = 0; i < count; i++)
argv[i] = calloc(128, sizeof(char));
argv[i] = calloc(96, sizeof(char));
for (i = 0; i < len && curcount < count; i++) {