[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Add empty statement to suppress gcc warning about label at ...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] Add empty statement to suppress gcc warning about label at ...
- From: nickm@seul.org (Nick Mathewson)
- Date: Thu, 14 Aug 2003 13:16:07 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Thu, 14 Aug 2003 13:16:14 -0400
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv27657/src/or
Modified Files:
connection_exit.c
Log Message:
Add empty statement to suppress gcc warning about label at end of compount statement
Index: connection_exit.c
===================================================================
RCS file: /home/or/cvsroot/src/or/connection_exit.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- connection_exit.c 14 Aug 2003 17:13:51 -0000 1.39
+++ connection_exit.c 14 Aug 2003 17:16:05 -0000 1.40
@@ -61,6 +61,7 @@
connection_remove(n_stream);
connection_free(n_stream);
case 0: /* resolve added to pending list */
+ ;
}
return 0;
}