Date: Thu, 16 Apr 2020 17:24:13 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r360015 - head/sys/kern Message-ID: <202004161724.03GHODwJ088233@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Thu Apr 16 17:24:13 2020 New Revision: 360015 URL: https://svnweb.freebsd.org/changeset/base/360015 Log: style(9): end continued line with operator. Modified: head/sys/kern/kern_sysctl.c Modified: head/sys/kern/kern_sysctl.c ============================================================================== --- head/sys/kern/kern_sysctl.c Thu Apr 16 17:20:18 2020 (r360014) +++ head/sys/kern/kern_sysctl.c Thu Apr 16 17:24:13 2020 (r360015) @@ -1655,8 +1655,8 @@ sysctl_handle_string(SYSCTL_HANDLER_ARGS) * string. In ddb, don't worry about trying to make a malloced * snapshot. */ - if ((oidp->oid_kind & (CTLFLAG_WR | CTLFLAG_TUN)) == 0 || arg2 == 0 - || kdb_active) { + if ((oidp->oid_kind & (CTLFLAG_WR | CTLFLAG_TUN)) == 0 || + arg2 == 0 || kdb_active) { arg2 = strlen((char *)arg1) + 1; ro_string = 1; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004161724.03GHODwJ088233>