diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-26 12:30:36 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-26 12:30:36 -0400 |
commit | dc886721c6d3438dba49e817a2ebc8a49a5e3880 (patch) | |
tree | 5c280e8de4d426af05665792b0b59f5d429a204f /src/sys/vm | |
parent | 28efb5fd6b63f856d99070cc153c75252c55b1ff (diff) |
kernel: vm: Remove redundant newline
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/vm')
-rw-r--r-- | src/sys/vm/vm_map.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sys/vm/vm_map.c b/src/sys/vm/vm_map.c index 27cdcce..277ff9a 100644 --- a/src/sys/vm/vm_map.c +++ b/src/sys/vm/vm_map.c @@ -113,7 +113,6 @@ vm_map(struct vm_vas *vas, struct mmu_map *spec, size_t len, int prot) spec_cpy = *spec; } - /* If this fails, unmap the partial region */ len = ALIGN_UP(len, PSIZE); retval = __vm_map(vas, spec, len, prot); |