svn commit: r328527 - head/sys/kern

Li-Wen Hsu lwhsu at FreeBSD.org
Mon Jan 29 02:29:09 UTC 2018


Author: lwhsu (ports committer)
Date: Mon Jan 29 02:29:08 2018
New Revision: 328527
URL: https://svnweb.freebsd.org/changeset/base/328527

Log:
  Fix LINT build after r328508, add forgotten part in format string
  
  Reviewed by:	delphij
  Differential Revision:	https://reviews.freebsd.org/D14089

Modified:
  head/sys/kern/subr_bus.c

Modified: head/sys/kern/subr_bus.c
==============================================================================
--- head/sys/kern/subr_bus.c	Mon Jan 29 01:59:04 2018	(r328526)
+++ head/sys/kern/subr_bus.c	Mon Jan 29 02:29:08 2018	(r328527)
@@ -5051,7 +5051,7 @@ print_device_short(device_t dev, int indent)
 	if (!dev)
 		return;
 
-	indentprintf(("device %d: <%s> %sparent,%schildren,%s%s%s%s%s,%sivars,%ssoftc,busy=%d\n",
+	indentprintf(("device %d: <%s> %sparent,%schildren,%s%s%s%s%s%s,%sivars,%ssoftc,busy=%d\n",
 	    dev->unit, dev->desc,
 	    (dev->parent? "":"no "),
 	    (TAILQ_EMPTY(&dev->children)? "no ":""),


More information about the svn-src-all mailing list