From: Nick Mathewson Date: Thu, 14 Aug 2003 17:16:05 +0000 (+0000) Subject: Add empty statement to suppress gcc warning about label at end of compount statement X-Git-Tag: tor-0.0.2pre8~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=adbc0577728dbf09d5c35efb2c36c0cc11fc5f59;p=thirdparty%2Ftor.git Add empty statement to suppress gcc warning about label at end of compount statement svn:r399 --- diff --git a/src/or/connection_exit.c b/src/or/connection_exit.c index 148f401e9b..f833a55cc2 100644 --- a/src/or/connection_exit.c +++ b/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; }