From 672c927e1b8aa660f0bf534248003eaf09f7ff20 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 31 Mar 2010 06:51:51 +0000 Subject: [PATCH] Fixed a format specification mismatch. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1571 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_lib.c b/scst/src/scst_lib.c index 4ba723c3c..303495ac7 100644 --- a/scst/src/scst_lib.c +++ b/scst/src/scst_lib.c @@ -2471,7 +2471,7 @@ int scst_tgt_dev_setup_threads(struct scst_tgt_dev *tgt_dev) GFP_KERNEL); if (aic_keeper == NULL) { PRINT_ERROR("Unable to alloc aic_keeper " - "(size %d)", sizeof(*aic_keeper)); + "(size %zd)", sizeof(*aic_keeper)); res = -ENOMEM; goto out; }