svn commit: r325519 - head/lib/libsysdecode

John Baldwin jhb at FreeBSD.org
Tue Nov 7 17:46:56 UTC 2017


Author: jhb
Date: Tue Nov  7 17:45:39 2017
New Revision: 325519
URL: https://svnweb.freebsd.org/changeset/base/325519

Log:
  Wrap to 80 columns.  No functional change.

Modified:
  head/lib/libsysdecode/flags.c

Modified: head/lib/libsysdecode/flags.c
==============================================================================
--- head/lib/libsysdecode/flags.c	Tue Nov  7 17:07:45 2017	(r325518)
+++ head/lib/libsysdecode/flags.c	Tue Nov  7 17:45:39 2017	(r325519)
@@ -647,9 +647,11 @@ sysdecode_reboot_howto(FILE *fp, int howto, int *rem)
 	/*
 	 * RB_AUTOBOOT is special in that its value is zero, but it is
 	 * also an implied argument if a different operation is not
-	 * requested via RB_HALT, RB_POWERCYCLE, RB_POWEROFF, or RB_REROOT.
+	 * requested via RB_HALT, RB_POWERCYCLE, RB_POWEROFF, or
+	 * RB_REROOT.
 	 */
-	if (howto != 0 && (howto & (RB_HALT | RB_POWEROFF | RB_REROOT | RB_POWERCYCLE)) == 0) {
+	if (howto != 0 && (howto & (RB_HALT | RB_POWEROFF | RB_REROOT |
+	    RB_POWERCYCLE)) == 0) {
 		fputs("RB_AUTOBOOT|", fp);
 		printed = true;
 	} else


More information about the svn-src-all mailing list