diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-05-20 15:22:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-05-20 15:22:27 -0400 |
commit | 2609b939d63e639d9fffc8aef9bffcb47ea80d66 (patch) | |
tree | 9ccc35a4d124dd56a7d81bcd286407f02710953c /src/or | |
parent | c21377e7bcc70d2a456409225d8b2d91990a14cd (diff) | |
download | tor-2609b939d63e639d9fffc8aef9bffcb47ea80d66.tar tor-2609b939d63e639d9fffc8aef9bffcb47ea80d66.tar.gz |
fix a wide line
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 7d114d9f6..025b5192b 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2826,7 +2826,8 @@ sandbox_init_filter(void) smartlist_t *logfiles = smartlist_new(); tor_log_get_logfile_names(logfiles); SMARTLIST_FOREACH(logfiles, char *, logfile_name, { - sandbox_cfg_allow_open_filename(&cfg, logfile_name); /* steals reference */ + /* steals reference */ + sandbox_cfg_allow_open_filename(&cfg, logfile_name); }); smartlist_free(logfiles); } |