diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-02-02 19:40:49 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-02-26 15:10:51 -0300 |
commit | c2312f60d741df833abf48fee4a30aa523e55a58 (patch) | |
tree | 9b6be9a4a258e58616094811083c6dcf3253f79e /drivers/media/video/cx18/cx18-alsa-pcm.c | |
parent | 407df29363f10642d87dbe49854c97eb57c84c94 (diff) |
V4L/DVB: drivers/media/video/cx18/cx18-alsa-pcm.c: fix printk warning
drivers/media/video/cx18/cx18-alsa-pcm.c: In function 'cx18_alsa_announce_pcm_data':
drivers/media/video/cx18/cx18-alsa-pcm.c:82: warning: format '%d' expects type 'int', but argument 5 has type 'size_t'
Cc: Andy Walls <awalls@radix.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-alsa-pcm.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-alsa-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx18/cx18-alsa-pcm.c b/drivers/media/video/cx18/cx18-alsa-pcm.c index cfa512112ca0..2bd312daeb1e 100644 --- a/drivers/media/video/cx18/cx18-alsa-pcm.c +++ b/drivers/media/video/cx18/cx18-alsa-pcm.c @@ -79,7 +79,7 @@ void cx18_alsa_announce_pcm_data(struct snd_cx18_card *cxsc, u8 *pcm_data, int period_elapsed = 0; int length; - dprintk("cx18 alsa announce ptr=%p data=%p num_bytes=%d\n", cxsc, + dprintk("cx18 alsa announce ptr=%p data=%p num_bytes=%zd\n", cxsc, pcm_data, num_bytes); substream = cxsc->capture_pcm_substream; |