From: Kevin Webb Date: Tue, 2 Dec 2008 00:17:19 +0000 (+0000) Subject: Small typo X-Git-Tag: DistributedRateLimiting-0.1-0~34 X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=commitdiff_plain;h=add7fd169f892f095a663ce4872c1cf6f403e10b Small typo --- diff --git a/drl/estimate.c b/drl/estimate.c index bfe22c5..e42d7a6 100644 --- a/drl/estimate.c +++ b/drl/estimate.c @@ -243,7 +243,7 @@ static uint32_t allocate_fps(identity_t *ident, double total_weight) { gettimeofday(&tv, NULL); time_now = (double) tv.tv_sec + (double) ((double) tv.tv_usec / (double) 1000000); - printlog(LOG_WARN, "%.2f %d %.2f %.2f %.2f %d %d %d %d %d %d %d %d", time_now, ftable->inst_rate, + printlog(LOG_WARN, "%.2f %d %.2f %.2f %.2f %d %d %d %d %d %d %d %d ", time_now, ftable->inst_rate, idealweight, ident->localweight, total_weight, ftable->num_flows, ftable->num_flows_5k, ftable->num_flows_10k, ftable->num_flows_20k, ftable->num_flows_50k, ftable->avg_rate, ftable->max_flow_rate, ftable->max_flow_rate_flow_hash);