Module: sems Branch: master Commit: b99ea58303156c218a78742b88f172d80ce9a0b5 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=b99ea58303156c218a78742b88f172d80ce9a0b5
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Wed Dec 15 01:47:46 2010 +0100 correct type for printf --- core/AmSessionProcessor.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/AmSessionProcessor.cpp b/core/AmSessionProcessor.cpp index 4c758d2..361d6bc 100644 --- a/core/AmSessionProcessor.cpp +++ b/core/AmSessionProcessor.cpp @@ -60,7 +60,7 @@ AmSessionProcessorThread* AmSessionProcessor::getProcessorThread() { } void AmSessionProcessor::addThreads(unsigned int num_threads) { - DBG("starting %zd session processor threads\n", num_threads); + DBG("starting %u session processor threads\n", num_threads); threads_mut.lock(); for (unsigned int i=0; i < num_threads;i++) { threads.push_back(new AmSessionProcessorThread()); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
