From: Andre Noll Date: Thu, 27 Jul 2006 17:21:49 +0000 (+0200) Subject: fix two trivial compile warnings on x86_64 X-Git-Tag: v0.2.14~57^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=a71de4701a2394830dc8e5b6f81d75eabb790be6 fix two trivial compile warnings on x86_64 --- diff --git a/dccp_send.c b/dccp_send.c index f05e5bdd..bb46678e 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -132,7 +132,7 @@ again: if (ret < 0) { if (errno != EAGAIN || !retries++ > DCCP_RETRIES) goto err_out; - PARA_DEBUG_LOG("EAGAIN #%zd@%zd/%d\n", retries, written, len); + PARA_DEBUG_LOG("EAGAIN #%d@%zd/%zd\n", retries, written, len); goto again; } retries = 0;