瀏覽代碼

Add empty statement to suppress gcc warning about label at end of compount statement

svn:r399
Nick Mathewson 21 年之前
父節點
當前提交
adbc057772
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/or/connection_exit.c

+ 1 - 0
src/or/connection_exit.c

@@ -61,6 +61,7 @@ int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
       connection_remove(n_stream);
       connection_free(n_stream);
     case 0: /* resolve added to pending list */
+      ;
   }
   return 0;
 }