Chore: trim spaces

This commit is contained in:
2025-04-15 19:51:00 +08:00
parent 75edf55dd3
commit 8ea82f927b
3 changed files with 3 additions and 3 deletions

View File

@@ -233,7 +233,7 @@ int shell(file_node_t *initrd_root)
char *p1 = VEC_AT(char, args, 1);
_memalloc((size_t)atoi32(p1));
} else if (!strcmp(cmd, "free") && args->size >= 2) {
char *p1 = VEC_AT(char, args, 1);
char *p1 = VEC_AT(char, args, 1);
_free((uint64_t)atoh32(p1));
} else if (!strcmp(cmd, "ls")) {
_ls(initrd_root);