diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-04-15 03:52:46 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-04-15 03:52:46 +0000 |
commit | ac8d7122e8c08efa70143daad36e5cea17ca808a (patch) | |
tree | ce910f1e8dd52db67ef664a9e9e5a9c98bdc21d6 | |
parent | 94de7fc1ad48fa5a2bed8052467384fcdf5283b1 (diff) |
Unneeded return at the end of a void function.
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 8697ec31ae3..55f55f93c2b 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.90 2015/03/14 03:38:46 jsg Exp $ */ +/* $OpenBSD: pmap.c,v 1.91 2015/04/15 03:52:45 mlarkin Exp $ */ /* $NetBSD: pmap.c,v 1.3 2003/05/08 18:13:13 thorpej Exp $ */ /* @@ -389,7 +389,6 @@ pmap_map_ptes(struct pmap *pmap, pt_entry_t **ptepp, pd_entry_t ***pdeppp, paddr *ptepp = PTE_BASE; *pdeppp = normal_pdes; - return; } void |