diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-25 03:35:12 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-26 13:50:59 +0400 |
commit | 35f30f36a7e66caa0973a4db620b4245df2cf428 (patch) | |
tree | 491263d000ef2493fde37cccb97867dc9401cce7 /drivers/media/dvb-frontends/zl10039.c | |
parent | 03ce781626138e9cc972fa4fef0034a067726fb6 (diff) | |
download | linux-35f30f36a7e66caa0973a4db620b4245df2cf428.tar.xz |
[media] dvb-frontends: use %zu instead of %zd
size_t is unsigned.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/zl10039.c')
-rw-r--r-- | drivers/media/dvb-frontends/zl10039.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/zl10039.c b/drivers/media/dvb-frontends/zl10039.c index 91b6b2e9b792..ee09ec26c553 100644 --- a/drivers/media/dvb-frontends/zl10039.c +++ b/drivers/media/dvb-frontends/zl10039.c @@ -111,7 +111,7 @@ static int zl10039_write(struct zl10039_state *state, if (1 + count > sizeof(buf)) { printk(KERN_WARNING - "%s: i2c wr reg=%04x: len=%zd is too big!\n", + "%s: i2c wr reg=%04x: len=%zu is too big!\n", KBUILD_MODNAME, reg, count); return -EINVAL; } |