[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>
This commit is contained in:
Zach Brown 2006-10-03 01:16:10 -07:00 committed by Linus Torvalds
parent 8057de64fd
commit c8c94b1139
1 changed files with 2 additions and 2 deletions

View File

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