Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit de73902

Browse files
authored
Fix
1 parent a775527 commit de73902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/core/process.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void process_destroy(Process* proc) {
103103

104104
}
105105

106-
int load_program(Process* proc, void* code, size_t size) {
106+
int load_program(Process* proc, void* code, int size) {
107107
if (!proc || !code || size == 0) {
108108
return -1;
109109
}

0 commit comments

Comments
 (0)