diff options
author | Zach Brown <zach.brown@oracle.com> | 2006-10-03 01:16:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 08:04:19 -0700 |
commit | c8c94b11399b1dc7f08f7b28ec4289a727f0daee (patch) | |
tree | a0b163cef46fe53fbff4e60c85bcf2a61b82173a /sound | |
parent | 8057de64fd4734ae3e70cf76deb77f1c19958494 (diff) | |
download | linux-3.10-c8c94b11399b1dc7f08f7b28ec4289a727f0daee.tar.gz linux-3.10-c8c94b11399b1dc7f08f7b28ec4289a727f0daee.tar.bz2 linux-3.10-c8c94b11399b1dc7f08f7b28ec4289a727f0daee.zip |
[PATCH] pr_debug: trident: use size_t length modifier in pr_debug format arguments
trident: use size_t length modifier in pr_debug format arguments
Signed-off-by: Zach Brown <zach.brown@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/trident.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/trident.c b/sound/oss/trident.c index ce79cd82478..147c816a1f2 100644 --- a/sound/oss/trident.c +++ b/sound/oss/trident.c @@ -1862,7 +1862,7 @@ trident_read(struct file *file, char __user *buffer, size_t count, loff_t * ppos unsigned swptr; int cnt; - pr_debug("trident: trident_read called, count = %d\n", count); + pr_debug("trident: trident_read called, count = %zd\n", count); VALIDATE_STATE(state); @@ -1978,7 +1978,7 @@ trident_write(struct file *file, const char __user *buffer, size_t count, loff_t unsigned int copy_count; int lret; /* for lock_set_fmt */ - pr_debug("trident: trident_write called, count = %d\n", count); + pr_debug("trident: trident_write called, count = %zd\n", count); VALIDATE_STATE(state); |