two arguments were transposed.

This commit is contained in:
Charles Kerr 2007-12-15 03:14:16 +00:00
parent 0fa3fb0d67
commit 99e8b9a19d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}