diff options
author | Rob Austein <sra@hactrn.net> | 2013-07-18 18:45:49 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-07-18 18:45:49 +0000 |
commit | bc025de067567bbde2a961f50ebf2ca329dcca99 (patch) | |
tree | 976611cb5a345e04044cf0922d8d20c20f97da05 | |
parent | f98b5ce061c1338ad87b552e5033c13599135cec (diff) |
GCC warning.
svn path=/trunk/; revision=5439
-rw-r--r-- | rcynic/rcynic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rcynic/rcynic.c b/rcynic/rcynic.c index 52182b49..25e3bd26 100644 --- a/rcynic/rcynic.c +++ b/rcynic/rcynic.c @@ -2777,7 +2777,7 @@ static void rsync_mgr(rcynic_ctx_t *rc) if (n > 0 && tv.tv_sec) logmsg(rc, log_verbose, "Waiting up to %u seconds for rsync, queued %d, runable %d, running %d, max %d", - tv.tv_sec, sk_rsync_ctx_t_num(rc->rsync_queue), rsync_count_runable(rc), + (unsigned) tv.tv_sec, sk_rsync_ctx_t_num(rc->rsync_queue), rsync_count_runable(rc), rsync_count_running(rc), rc->max_parallel_fetches); if (n > 0) { |