diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-09 16:01:48 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-09 16:01:48 -0400 |
commit | dd56a66d9b7246fbe33539bfef72eabeba1b507a (patch) | |
tree | 1e464fc7a7541845b430e13a3d69a8177aa038de /sys/vm | |
parent | a725751e36cd22c3216a53247d109c20022ceb56 (diff) |
kernel: vm_map: Remove extra leading whitespace
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index 6627865..7b0656b 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -94,8 +94,8 @@ vm_map_modify(struct vas vas, vaddr_t va, paddr_t pa, vm_prot_t prot, bool unmap * @prot: Protection flags. * @count: Count of bytes to be mapped (aligned to page granularity). * - * Returns 0 on success, and a less than zero errno - * on failure. + * Returns 0 on success, and a less than zero errno + * on failure. */ int vm_map(struct vas vas, vaddr_t va, paddr_t pa, vm_prot_t prot, size_t count) |