summaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/config.c')
-rw-r--r--src/or/config.c6
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)