From 99e8b9a19d20ca987de59f2bd744781b5f1d521e Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 15 Dec 2007 03:14:16 +0000 Subject: [PATCH] two arguments were transposed. --- libtransmission/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/net.c b/libtransmission/net.c index 27cf5b1d2..5f61362de 100644 --- a/libtransmission/net.c +++ b/libtransmission/net.c @@ -178,7 +178,7 @@ tr_netBind( int port, int type ) return -1; } - tr_inf( "Bound socket %d to port %d", port, s ); + tr_inf( "Bound socket %d to port %d", s, port ); return s; }