diff options
author | 2016-03-07 18:43:59 +0000 | |
---|---|---|
committer | 2016-03-07 18:43:59 +0000 | |
commit | c799dc6db0ca90a942c4bb0e104bed8cbd2fce92 (patch) | |
tree | ab9afe55e9549f5a91f549c25acd444f2bddece6 /sys/netinet/tcp_input.c | |
parent | Make __fd_isset() take a const fd_set * param, to avoid upsetting c++ (diff) | |
download | wireguard-openbsd-c799dc6db0ca90a942c4bb0e104bed8cbd2fce92.tar.xz wireguard-openbsd-c799dc6db0ca90a942c4bb0e104bed8cbd2fce92.zip |
Sync no-argument function declaration and definition by adding (void).
ok mpi@ millert@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 3fa82c5b593..b367d703ca6 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.313 2016/01/22 11:10:17 jsg Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.314 2016/03/07 18:44:00 naddy Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -3346,7 +3346,7 @@ do { \ #define SYN_CACHE_TIMESTAMP(sc) tcp_now + (sc)->sc_modulate void -syn_cache_init() +syn_cache_init(void) { int i; |