server: Print the debug trace to stderr.

This commit is contained in:
Dmitry Timoshkov 2013-09-04 11:47:03 +09:00 committed by Alexandre Julliard
parent 30c55f3547
commit e22f8d2fd8
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ static void sock_dump( struct object *obj, int verbose )
{
struct sock *sock = (struct sock *)obj;
assert( obj->ops == &sock_ops );
printf( "Socket fd=%p, state=%x, mask=%x, pending=%x, held=%x\n",
fprintf( stderr, "Socket fd=%p, state=%x, mask=%x, pending=%x, held=%x\n",
sock->fd, sock->state,
sock->mask, sock->pmask, sock->hmask );
}