Fixed a format specification mismatch.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1571 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2010-03-31 06:51:51 +00:00
parent 4e53e166b4
commit 672c927e1b

View File

@@ -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;
}