svn commit: r337756 - stable/11/sbin/ifconfig
Mark Johnston
markj at FreeBSD.org
Tue Aug 14 14:17:56 UTC 2018
Author: markj
Date: Tue Aug 14 14:17:55 2018
New Revision: 337756
URL: https://svnweb.freebsd.org/changeset/base/337756
Log:
MFC r337426:
ifconfig: Fix use of _Noreturn
Modified:
stable/11/sbin/ifconfig/ifconfig.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sbin/ifconfig/ifconfig.c
==============================================================================
--- stable/11/sbin/ifconfig/ifconfig.c Tue Aug 14 14:17:20 2018 (r337755)
+++ stable/11/sbin/ifconfig/ifconfig.c Tue Aug 14 14:17:55 2018 (r337756)
@@ -106,7 +106,7 @@ static int ifconfig(int argc, char *const *argv, int i
static void status(const struct afswtch *afp, const struct sockaddr_dl *sdl,
struct ifaddrs *ifa);
static void tunnel_status(int s);
-static void usage(void) _Noreturn;
+static _Noreturn void usage(void);
static struct afswtch *af_getbyname(const char *name);
static struct afswtch *af_getbyfamily(int af);
More information about the svn-src-all
mailing list