From 6f26936c0fa8160d97426c9e110e848059f085af Mon Sep 17 00:00:00 2001 From: Giorgos Keramidas Date: Mon, 28 Nov 2005 13:23:15 +0000 Subject: [PATCH] Fix two identical harmless typos in ata error messages: s/issueing/issuing/ PR: kern/89481 Submitted by: John Nielsen Approved by: sos MFC after: 1 week --- sys/dev/ata/ata-lowlevel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ata/ata-lowlevel.c b/sys/dev/ata/ata-lowlevel.c index e22761457b26..8ece60575121 100644 --- a/sys/dev/ata/ata-lowlevel.c +++ b/sys/dev/ata/ata-lowlevel.c @@ -96,7 +96,7 @@ ata_begin_transaction(struct ata_request *request) /* issue command */ if (ch->hw.command(request)) { - device_printf(request->dev, "error issueing %s command\n", + device_printf(request->dev, "error issuing %s command\n", ata_cmd2str(request)); request->result = EIO; goto begin_finished; @@ -139,7 +139,7 @@ ata_begin_transaction(struct ata_request *request) /* issue command */ if (ch->hw.command(request)) { - device_printf(request->dev, "error issueing %s command\n", + device_printf(request->dev, "error issuing %s command\n", ata_cmd2str(request)); request->result = EIO; goto begin_finished;