r11688@Kushana: nickm | 2006-12-23 22:08:36 -0500

Fix "r may be used uninitialized" warning from last patch.


svn:r9177
This commit is contained in:
Nick Mathewson 2006-12-24 03:08:44 +00:00
parent bf1014692f
commit d76b2a4ec0

View file

@ -542,7 +542,7 @@ accounting_record_bandwidth_usage(time_t now, or_state_t *state)
char time2[ISO_TIME_LEN+1];
char *cp = buf;
time_t tmp;
int r;
int r = 0;
uint64_t expected;
static time_t last_recorded;