Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752498AbdLJTcR (ORCPT ); Sun, 10 Dec 2017 14:32:17 -0500 Received: from mx1.polytechnique.org ([129.104.30.34]:58334 "EHLO mx1.polytechnique.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751999AbdLJTcQ (ORCPT ); Sun, 10 Dec 2017 14:32:16 -0500 X-Greylist: delayed 503 seconds by postgrey-1.27 at vger.kernel.org; Sun, 10 Dec 2017 14:32:16 EST From: Nicolas Iooss To: Satish Kharat , Sesidhar Baddela , Karan Tilak Kumar , linux-scsi@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Nicolas Iooss Subject: [PATCH 1/1] scsi: fnic: add a space after %p in printf format Date: Sun, 10 Dec 2017 20:23:11 +0100 Message-Id: <20171210192311.5334-1-nicolas.iooss_linux@m4x.org> X-Mailer: git-send-email 2.15.0 X-AV-Checked: ClamAV using ClamSMTP at svoboda.polytechnique.org (Sun Dec 10 20:23:50 2017 +0100 (CET)) X-Spam-Flag: No, tests=bogofilter, spamicity=0.000003, queueID=401FC5612AD Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 985 Lines: 30 fnic_fcpio_icmnd_cmpl_handler() displays the value of sc with: FNIC_SCSI_DBG(KERN_INFO... "... sc = 0x%p" "scsi_status ..." ... As the literal strings get merged, the function uses %ps instead of the intended raw %p format. Fix this by inserting a space. Signed-off-by: Nicolas Iooss --- drivers/scsi/fnic/fnic_scsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/fnic/fnic_scsi.c b/drivers/scsi/fnic/fnic_scsi.c index 242e2ee494a1..8cbd3c9f0b4c 100644 --- a/drivers/scsi/fnic/fnic_scsi.c +++ b/drivers/scsi/fnic/fnic_scsi.c @@ -906,7 +906,7 @@ static void fnic_fcpio_icmnd_cmpl_handler(struct fnic *fnic, FNIC_SCSI_DBG(KERN_INFO, fnic->lport->host, "icmnd_cmpl abts pending " - "hdr status = %s tag = 0x%x sc = 0x%p" + "hdr status = %s tag = 0x%x sc = 0x%p " "scsi_status = %x residual = %d\n", fnic_fcpio_status_to_str(hdr_status), id, sc, -- 2.15.0