From 5f6db092126ca0b4e20f2d19b31327cb19fd13db Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Mon, 14 Sep 2009 18:02:11 +0000 Subject: [PATCH] Minor cleanup git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1093 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_targ.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scst/src/scst_targ.c b/scst/src/scst_targ.c index fb77f550c..749ba7802 100644 --- a/scst/src/scst_targ.c +++ b/scst/src/scst_targ.c @@ -220,7 +220,7 @@ void scst_cmd_init_done(struct scst_cmd *cmd, ((pref_context == SCST_CONTEXT_DIRECT) || (pref_context == SCST_CONTEXT_DIRECT_ATOMIC))) { PRINT_ERROR("Wrong context %d in IRQ from target %s, use " - "SCST_CONTEXT_THREAD instead\n", pref_context, + "SCST_CONTEXT_THREAD instead", pref_context, cmd->tgtt->name); pref_context = SCST_CONTEXT_THREAD; } @@ -831,7 +831,7 @@ void scst_restart_cmd(struct scst_cmd *cmd, int status, ((pref_context == SCST_CONTEXT_DIRECT) || (pref_context == SCST_CONTEXT_DIRECT_ATOMIC))) { PRINT_ERROR("Wrong context %d in IRQ from target %s, use " - "SCST_CONTEXT_THREAD instead\n", pref_context, + "SCST_CONTEXT_THREAD instead", pref_context, cmd->tgtt->name); pref_context = SCST_CONTEXT_THREAD; } @@ -1068,7 +1068,7 @@ void scst_rx_data(struct scst_cmd *cmd, int status, ((pref_context == SCST_CONTEXT_DIRECT) || (pref_context == SCST_CONTEXT_DIRECT_ATOMIC))) { PRINT_ERROR("Wrong context %d in IRQ from target %s, use " - "SCST_CONTEXT_THREAD instead\n", pref_context, + "SCST_CONTEXT_THREAD instead", pref_context, cmd->tgtt->name); pref_context = SCST_CONTEXT_THREAD; }