소스 검색

they're uint64 and uint32, not int and int

svn:r2152
Roger Dingledine 21 년 전
부모
커밋
967a762fe1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/main.c

+ 1 - 1
src/or/main.c

@@ -963,7 +963,7 @@ static void dumpstats(int severity) {
                 (stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) );
 
   if (stats_n_seconds_uptime)
-    log(severity,"Average bandwidth used: %d/%d = %d bytes/sec",
+    log(severity,"Average bandwidth used: %llu/%ld = %d bytes/sec",
            stats_n_bytes_read, stats_n_seconds_uptime,
            (int) (stats_n_bytes_read/stats_n_seconds_uptime));