Skip to content
Snippets Groups Projects
Commit 36bbab2f authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix in warning fix

svn:r2617
parent f8771625
No related branches found
No related tags found
No related merge requests found
......@@ -237,7 +237,7 @@ void rep_hist_dump_stats(time_t now, int severity)
double uptime;
char buffer[2048];
size_t len;
int r;
int ret;
unsigned long upt, downt;
routerinfo_t *r;
......@@ -281,13 +281,13 @@ void rep_hist_dump_stats(time_t now, int severity)
link_history = (link_history_t*) link_history_p;
r = tor_snprintf(buffer+len, 2048-len, "%s(%ld/%ld); ", name2,
ret = tor_snprintf(buffer+len, 2048-len, "%s(%ld/%ld); ", name2,
link_history->n_extend_ok,
link_history->n_extend_ok+link_history->n_extend_fail);
if (r<0)
if (ret<0)
break;
else
len += r;
len += ret;
}
log(severity, "%s", buffer);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment