summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctc4xxp
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-08-06 20:53:05 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-08-06 20:53:05 +0000
commit593015f468fb4e58c54b765af460ad5c1c7ad341 (patch)
tree9f3b19adb2e5c0b5515d771ba908030b533b8eab /drivers/dahdi/wctc4xxp
parentcd4763bcfad087a8e2e33464e79b4f69a5f31094 (diff)
fix a compiler warning by using the proper format string for a size_t variable
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4720 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wctc4xxp')
-rw-r--r--drivers/dahdi/wctc4xxp/base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dahdi/wctc4xxp/base.c b/drivers/dahdi/wctc4xxp/base.c
index f41ab0f..d084547 100644
--- a/drivers/dahdi/wctc4xxp/base.c
+++ b/drivers/dahdi/wctc4xxp/base.c
@@ -1732,7 +1732,7 @@ wctc4xxp_write(struct file *file, const char __user *frame, size_t count, loff_t
if (unlikely(count > SFRAME_SIZE - sizeof(struct rtp_packet))) {
DTE_DEBUG(DTE_DEBUG_GENERAL,
"Cannot transcode packet of %Zu bytes. This exceeds the " \
- "maximum size of %d bytes.\n", count,
+ "maximum size of %Zu bytes.\n", count,
SFRAME_SIZE - sizeof(struct rtp_packet));
return -EINVAL;
}