diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-30 01:09:52 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-30 01:09:52 +0000 |
commit | 92451f74a8fd50bbd2f360526263a4913d145677 (patch) | |
tree | 0fd53e000abac269d11ca5bb7c13ae7a14d997bc /src/or/rephist.c | |
parent | 6ce1add8da1de0c814b4f10f99e7c1f89736ed90 (diff) | |
download | tor-92451f74a8fd50bbd2f360526263a4913d145677.tar.gz tor-92451f74a8fd50bbd2f360526263a4913d145677.zip |
Reformat inconsistent function declarations.
svn:r5160
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index af3cbcc868..85532a3e66 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -766,8 +766,15 @@ rep_hist_get_predicted_hidserv(time_t now, int *need_uptime, int *need_capacity) } /* not used yet */ -void rep_hist_note_used_resolve(time_t now) { } -int rep_hist_get_predicted_resolve(time_t now) { return 0; } +void +rep_hist_note_used_resolve(time_t now) +{ +} +int +rep_hist_get_predicted_resolve(time_t now) +{ + return 0; +} /** Free all storage held by the OR/link history caches, by the * bandwidth history arrays, or by the port history. */ |