From: Nick Mathewson Date: Tue, 20 May 2014 19:22:27 +0000 (-0400) Subject: fix a wide line X-Git-Tag: tor-0.2.5.5-alpha~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2609b939d63e639d9fffc8aef9bffcb47ea80d66;p=thirdparty%2Ftor.git fix a wide line --- diff --git a/src/or/main.c b/src/or/main.c index 7d114d9f68..025b5192b5 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); }