瀏覽代碼

fix a wide line

Nick Mathewson 10 年之前
父節點
當前提交
2609b939d6
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/or/main.c

+ 2 - 1
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);
   }