Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaerr committed Nov 18, 2024
1 parent 476f30b commit abaac52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elks/arch/i86/mm/malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,12 @@ int sys_fmemfree(unsigned short segment)
seg_free(seg);
return 0;
}
printk("sys_fmemfree: not owner %04x\n", segment);
debug("sys_fmemfree: not owner %04x\n", segment);
return -EACCES;
}
n = seg->all.next;
}
printk("sys_fmemfree: segment not found %04x\n", segment);
debug("sys_fmemfree: segment not found %04x\n", segment);
return -EINVAL;
}

Expand Down

0 comments on commit abaac52

Please sign in to comment.