style(9): end continued line with operator.

This commit is contained in:
Brooks Davis 2020-04-16 17:24:13 +00:00
parent 539642a29d
commit 19112958cf

View File

@ -1655,8 +1655,8 @@ sysctl_handle_string(SYSCTL_HANDLER_ARGS)
* string. In ddb, don't worry about trying to make a malloced * string. In ddb, don't worry about trying to make a malloced
* snapshot. * snapshot.
*/ */
if ((oidp->oid_kind & (CTLFLAG_WR | CTLFLAG_TUN)) == 0 || arg2 == 0 if ((oidp->oid_kind & (CTLFLAG_WR | CTLFLAG_TUN)) == 0 ||
|| kdb_active) { arg2 == 0 || kdb_active) {
arg2 = strlen((char *)arg1) + 1; arg2 = strlen((char *)arg1) + 1;
ro_string = 1; ro_string = 1;
} }