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/config.c | |
parent | 6ce1add8da1de0c814b4f10f99e7c1f89736ed90 (diff) | |
download | tor-92451f74a8fd50bbd2f360526263a4913d145677.tar.gz tor-92451f74a8fd50bbd2f360526263a4913d145677.zip |
Reformat inconsistent function declarations.
svn:r5160
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 8970d8d7ed..01e4436c98 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3154,7 +3154,8 @@ config_parse_units(const char *val, struct unit_table_t *u, int *ok) * and return the number of bytes specified. Otherwise, set * *<b>ok</b> to false and return 0. */ static uint64_t -config_parse_memunit(const char *s, int *ok) { +config_parse_memunit(const char *s, int *ok) +{ return config_parse_units(s, memory_units, ok); } @@ -3163,7 +3164,8 @@ config_parse_memunit(const char *s, int *ok) { * the provided interval. Otherwise, set *<b>ok</b> to 0 and return -1. */ static int -config_parse_interval(const char *s, int *ok) { +config_parse_interval(const char *s, int *ok) +{ uint64_t r; r = config_parse_units(s, time_units, ok); if (!ok) |