diff options
author | 2015-04-15 03:52:45 +0000 | |
---|---|---|
committer | 2015-04-15 03:52:45 +0000 | |
commit | 6cccb99754d976201dc49cf9d689569d54b50a69 (patch) | |
tree | a7dd5f2aabcc93240b1dcee96221d34982af07fd | |
parent | opt{ind,err,arg} are already known (diff) | |
download | wireguard-openbsd-6cccb99754d976201dc49cf9d689569d54b50a69.tar.xz wireguard-openbsd-6cccb99754d976201dc49cf9d689569d54b50a69.zip |
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 |