Fix file output (all assembly must be in one file)

This commit is contained in:
Augusto Gunsch
2021-01-04 17:12:32 -03:00
parent 553c87029f
commit 2de711957a
3 changed files with 5 additions and 5 deletions

View File

@@ -93,9 +93,9 @@ bool isdir(char* f, int len) {
char* getoutname(char* fullname, int len) {
char* trimmed = trimstr(fullname, len, 4);
int sz = sizeof(char) * (len);
int sz = sizeof(char) * (len-1);
char* outname = (char*)malloc(sz);
snprintf(outname, sz, "%sasm", trimmed);
snprintf(outname, sz, "%svm", trimmed);
free(trimmed);
return outname;
}