svn commit: r204353 - head/sys/cam

Alexander Motin mav at FreeBSD.org
Fri Feb 26 10:33:49 UTC 2010


Author: mav
Date: Fri Feb 26 10:33:48 2010
New Revision: 204353
URL: http://svn.freebsd.org/changeset/base/204353

Log:
  Fix newlines broken at r204220.

Modified:
  head/sys/cam/cam_xpt.c

Modified: head/sys/cam/cam_xpt.c
==============================================================================
--- head/sys/cam/cam_xpt.c	Fri Feb 26 09:41:16 2010	(r204352)
+++ head/sys/cam/cam_xpt.c	Fri Feb 26 10:33:48 2010	(r204353)
@@ -1096,7 +1096,7 @@ xpt_announce_periph(struct cam_periph *p
 	/* Announce command queueing. */
 	if (path->device->inq_flags & SID_CmdQue
 	 || path->device->flags & CAM_DEV_TAG_AFTER_COUNT) {
-		printf("\n%s%d: Command Queueing enabled",
+		printf("%s%d: Command Queueing enabled\n",
 		       periph->periph_name, periph->unit_number);
 	}
 	/* Announce caller's details if they've passed in. */


More information about the svn-src-all mailing list