From: Dmitry V. Levin Date: Tue, 6 Apr 2010 23:54:18 +0000 (+0000) Subject: * desc.c (sys_epoll_pwait): Fix output formatting bug. X-Git-Tag: v4.5.20~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9676499f89dbb6e870ed19c857c4ceaca44452b7;p=strace * desc.c (sys_epoll_pwait): Fix output formatting bug. --- diff --git a/desc.c b/desc.c index c615663a..9571e494 100644 --- a/desc.c +++ b/desc.c @@ -772,8 +772,10 @@ int sys_epoll_pwait(struct tcb *tcp) { epoll_wait_common(tcp); - if (exiting(tcp)) + if (exiting(tcp)) { + tprintf(", "); print_sigset(tcp, tcp->u_arg[4], 0); + } return 0; }