diff options
author | 2012-04-07 14:28:45 +0000 | |
---|---|---|
committer | 2012-04-07 14:28:45 +0000 | |
commit | 1f95a411d85ac417bee894ee5e9d80b26dfa5ceb (patch) | |
tree | a9f6aedcb077592c9ab9b26735452842ef975807 | |
parent | Minimal threads debug support for sparc64. (diff) | |
download | wireguard-openbsd-1f95a411d85ac417bee894ee5e9d80b26dfa5ceb.tar.xz wireguard-openbsd-1f95a411d85ac417bee894ee5e9d80b26dfa5ceb.zip |
remove superfluous return, ok mikeb
-rw-r--r-- | sys/net/if_pfsync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_pfsync.c b/sys/net/if_pfsync.c index bb191010dac..947cfe32db3 100644 --- a/sys/net/if_pfsync.c +++ b/sys/net/if_pfsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pfsync.c,v 1.182 2012/04/03 15:09:03 mikeb Exp $ */ +/* $OpenBSD: if_pfsync.c,v 1.183 2012/04/07 14:28:45 camield Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -456,7 +456,7 @@ pfsync_alloc_scrub_memory(struct pfsync_state_peer *s, void pfsync_state_export(struct pfsync_state *sp, struct pf_state *st) { - return (pf_state_export(sp, st)); + pf_state_export(sp, st); } int |