X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconnection.c;h=e4e8fad81c6bf6087b15f20dbcf229fa2324e06c;hp=b9a3c237f51d493dd08ebf1ae53cc4c2d9ca1a61;hb=6c7172d694dcb80e538518282b6c4bd51818f1d2;hpb=9528a63c35da77ba5b825068aeffbc5587816dd5;ds=sidebyside diff --git a/src/connection.c b/src/connection.c index b9a3c237..e4e8fad8 100644 --- a/src/connection.c +++ b/src/connection.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: connection.c,v 1.1.2.35 2002/09/10 22:12:33 guus Exp $ + $Id: connection.c,v 1.1.2.36 2003/06/25 20:55:05 guus Exp $ */ #include "config.h" @@ -44,7 +44,7 @@ connection_t *broadcast; int connection_compare(connection_t *a, connection_t *b) { - return a - b; + return (void *)a - (void *)b; } void init_connections(void)