소스 검색

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);
   }