Dmitry Timoshkov : server: Print the debug trace to stderr.
Module: wine Branch: master Commit: e22f8d2fd86421c61c03de8e675054c9ca3922da URL: http://source.winehq.org/git/wine.git/?a=commit;h=e22f8d2fd86421c61c03de8e67... Author: Dmitry Timoshkov <dmitry(a)baikal.ru> Date: Wed Sep 4 11:47:03 2013 +0900 server: Print the debug trace to stderr. --- server/sock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/sock.c b/server/sock.c index d6a228e..145e2a7 100644 --- a/server/sock.c +++ b/server/sock.c @@ -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 ); }
participants (1)
-
Alexandre Julliard