diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-29 02:58:14 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-29 02:58:14 +0000 |
commit | 209e6f81de6ea3eb825178e9ab0d853ace9b4fe4 (patch) | |
tree | 39557a0a8b1c511b83377c548b8367be1ea9fb3c /usr.sbin/npppd | |
parent | f8187a6eb66878b0b0b80568b5d8df62b948285d (diff) |
static inline, not inline static
c99 6.11.5:
"The placement of a storage-class specifier other than at the beginning
of the declaration specifiers in a declaration is an obsolescent
feature."
ok guenther@
Diffstat (limited to 'usr.sbin/npppd')
-rw-r--r-- | usr.sbin/npppd/npppd/npppd_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/npppd/npppd/npppd_pool.c b/usr.sbin/npppd/npppd/npppd_pool.c index 8ae54b77695..2d37a823e72 100644 --- a/usr.sbin/npppd/npppd/npppd_pool.c +++ b/usr.sbin/npppd/npppd/npppd_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: npppd_pool.c,v 1.10 2017/05/30 17:22:00 yasuoka Exp $ */ +/* $OpenBSD: npppd_pool.c,v 1.11 2022/08/29 02:58:13 jsg Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -338,7 +338,7 @@ npppd_pool_get_dynamic(npppd_pool *_this, npppd_ppp *ppp) return (uint32_t)0; } -inline static int +static inline int npppd_is_ifcace_ip4addr(npppd *_this, uint32_t ip4addr) { int i; |