diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-12 19:44:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-12 19:44:43 +0000 |
commit | d6575cc8ff9025a145ccf2683cc5d9cc5735c7c4 (patch) | |
tree | d968a5d6cc508a2701eda0962cb5dbd00a146d77 | |
parent | 3e125c3fcef09481d2cc695b02ddc150d6ca1c65 (diff) |
return; at end of function is dorky
-rw-r--r-- | sbin/pfctl/pfctl_osfp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_osfp.c b/sbin/pfctl/pfctl_osfp.c index 23e3cccc0bf..aecf8068e6e 100644 --- a/sbin/pfctl/pfctl_osfp.c +++ b/sbin/pfctl/pfctl_osfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_osfp.c,v 1.12 2005/02/17 13:18:00 aaron Exp $ */ +/* $OpenBSD: pfctl_osfp.c,v 1.13 2005/11/12 19:44:42 deraadt Exp $ */ /* * Copyright (c) 2003 Mike Frantzen <frantzen@openbsd.org> @@ -762,7 +762,6 @@ sort_name_list(int opts, struct name_list *nml) LIST_INSERT_AFTER(nmlast, nm, nm_entry); nmlast = nm; } - return; } /* parse the next integer in a formatted config file line */ |