diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2009-07-15 17:26:11 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2009-07-15 17:26:11 +0200 |
commit | 989e74e5c0f00b0b423b79ecf34c1e28fe6ab356 (patch) | |
tree | 778fdb203aa64deb7b4aca180ac1f4c29a5fb77c | |
parent | d4b31cf98f85550155156726ad9f3424def07fb7 (diff) | |
download | tor-989e74e5c0f00b0b423b79ecf34c1e28fe6ab356.tar.gz tor-989e74e5c0f00b0b423b79ecf34c1e28fe6ab356.zip |
fix long line
-rw-r--r-- | src/or/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 19212fe899..940a205748 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -4799,7 +4799,8 @@ config_parse_units(const char *val, struct unit_table_t *u, int *ok) tor_assert(ok); sl = smartlist_create(); - smartlist_split_string(sl, val, NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3); + smartlist_split_string(sl, val, NULL, + SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3); if (smartlist_len(sl) < 1 || smartlist_len(sl) > 2) { *ok = 0; |