$OpenBSD: patch-libtransmission_peer-mgr_c,v 1.3 2014/06/01 11:37:06 naddy Exp $

time_t printing.

--- libtransmission/peer-mgr.c.orig	Sun May 18 22:52:12 2014
+++ libtransmission/peer-mgr.c	Mon May 26 20:51:06 2014
@@ -2892,9 +2892,9 @@ rechokeDownloads (tr_swarm * s)
         const double mult = MIN (timeSinceCancel, maxHistory) / (double) maxHistory;
         const int inc = maxIncrease * mult;
         maxPeers = s->maxPeers + inc;
-        tordbg (s, "time since last cancel is %li -- increasing the "
+        tordbg (s, "time since last cancel is %lli -- increasing the "
                    "number of peers we're interested in by %d",
-                   timeSinceCancel, inc);
+                   (long long)timeSinceCancel, inc);
       }
   }
 
