diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-08-14 17:16:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-08-14 17:16:05 +0000 |
commit | adbc0577728dbf09d5c35efb2c36c0cc11fc5f59 (patch) | |
tree | ac915786ed97b19ddea944450b803d1e19158683 /src | |
parent | cd3467bb01cb5bd98b2978fb50bdaa2f3227c980 (diff) | |
download | tor-adbc0577728dbf09d5c35efb2c36c0cc11fc5f59.tar tor-adbc0577728dbf09d5c35efb2c36c0cc11fc5f59.tar.gz |
Add empty statement to suppress gcc warning about label at end of compount statement
svn:r399
Diffstat (limited to 'src')
-rw-r--r-- | src/or/connection_exit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/connection_exit.c b/src/or/connection_exit.c index 148f401e9..f833a55cc 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; } |