From 15d044f72bcc551616b9fffc1068da0403ee009f Mon Sep 17 00:00:00 2001 From: Thomas Ries Date: Wed, 13 Oct 2010 22:43:53 +0000 Subject: [PATCH] siproxd bug 3086593 The attached patch fixes the warning by using a more portable method of printing size_t values. --- src/siproxd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/siproxd.c b/src/siproxd.c index 21f2945..965977a 100644 --- a/src/siproxd.c +++ b/src/siproxd.c @@ -384,7 +384,7 @@ int main (int argc, char *argv[]) * got input, process */ buflen = (size_t)sts; - DEBUGC(DBCLASS_BABBLE,"received %i bytes of data", buflen); + DEBUGC(DBCLASS_BABBLE,"received %zd bytes of data", buflen); ticket.direction=0; buff[buflen]='\0';