Commit 5e4a26ef authored by Alan Stern's avatar Alan Stern Committed by Linus Torvalds

[PATCH] Trivial patch for scsi logging text string

Greg:

This patch fixes a very minor bobble in a kernel logging string (excess
blank space following the \n).  Please apply.

Alan Stern
parent 6ea24b16
......@@ -742,7 +742,7 @@ void scsi_io_completion(struct scsi_cmnd *cmd, int good_sectors,
if (good_sectors >= 0) {
SCSI_LOG_HLCOMPLETE(1, printk("%ld sectors total, %d sectors done.\n",
req->nr_sectors, good_sectors));
SCSI_LOG_HLCOMPLETE(1, printk("use_sg is %d\n ", cmd->use_sg));
SCSI_LOG_HLCOMPLETE(1, printk("use_sg is %d\n", cmd->use_sg));
if (clear_errors)
req->errors = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment