mei: fix format string in debug prints

buf_idx type was changed to size_t, and few places
missed out to change the print format from %ld to %zu.
Use also uz for buf.size which is also of size_t

Fixes:
commit 56988f22e097 ("mei: fix possible integer overflow issue")'

Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Alexander Usyskin
2016-02-17 18:27:34 +02:00
committed by Greg Kroah-Hartman
parent 941943cf51
commit 35bf7692e7
4 changed files with 6 additions and 6 deletions

View File

@@ -221,7 +221,7 @@ copy_buffer:
goto free;
}
cl_dbg(dev, cl, "buf.size = %zd buf.idx = %zd offset = %lld\n",
cl_dbg(dev, cl, "buf.size = %zu buf.idx = %zu offset = %lld\n",
cb->buf.size, cb->buf_idx, *offset);
if (*offset >= cb->buf_idx) {
rets = 0;