diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-13 23:44:12 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-04-13 23:44:12 +0000 |
commit | f8b9cae814771de46eb66cc93da3952fd57f6941 (patch) | |
tree | 7e85700c0d56cb96bb228a8f3a772fc366f1d7d5 /sys/uvm/uvm_addr.c | |
parent | d5099c55a37a6e9ed2c726cebdf85453b3a0448e (diff) |
correct indentation
no functional change, found by smatch warnings
ok miod@ bluhm@
Diffstat (limited to 'sys/uvm/uvm_addr.c')
-rw-r--r-- | sys/uvm/uvm_addr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_addr.c b/sys/uvm/uvm_addr.c index 6e3b02d5c09..ac0574a7eaf 100644 --- a/sys/uvm/uvm_addr.c +++ b/sys/uvm/uvm_addr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_addr.c,v 1.32 2022/11/04 09:36:44 mpi Exp $ */ +/* $OpenBSD: uvm_addr.c,v 1.33 2024/04/13 23:44:11 jsg Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl> @@ -1406,7 +1406,7 @@ uaddr_stack_brk_select(struct vm_map *map, struct uvm_addr_state *uaddr, if (uvm_addr_linsearch(map, uaddr, entry_out, addr_out, 0, sz, align, offset, dir, start, end - sz, before_gap, after_gap) == 0) - return 0; + return 0; } return ENOMEM; |