Browse Source

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

svn:r399
Nick Mathewson 21 years ago
parent
commit
adbc057772
1 changed files with 1 additions and 0 deletions
  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;
 }