From a11a6c0ae16575af82acf231f7ca8cc8c19d1496 Mon Sep 17 00:00:00 2001 From: Thomas Ries Date: Mon, 5 Jun 2017 16:34:37 +0000 Subject: [PATCH] --- src/rtpproxy_relay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rtpproxy_relay.c b/src/rtpproxy_relay.c index 7984e0b..e86d9b2 100644 --- a/src/rtpproxy_relay.c +++ b/src/rtpproxy_relay.c @@ -118,7 +118,7 @@ int rtp_relay_init( void ) { pthread_attr_init(&attr); pthread_attr_init(&attr); pthread_attr_getstacksize (&attr, &stacksize); - INFO("Current thread stacksize is %u kB",(stacksize/1024)); + INFO("Current thread stacksize is %u kB",(unsigned int)(stacksize/1024)); /* experimental feature: * reduce the thread stack size to reduce the overall @@ -132,7 +132,7 @@ int rtp_relay_init( void ) { if (configuration.thread_stack_size > 0) { stacksize = configuration.thread_stack_size*1024; pthread_attr_setstacksize (&attr, stacksize); - INFO("Setting new thread stacksize to %u kB",stacksize/1024); + INFO("Setting new thread stacksize to %u kB",(unsigned int)stacksize/1024); } DEBUGC(DBCLASS_RTP,"create thread");