* desc.c (sys_epoll_pwait): Fix output formatting bug.

This commit is contained in:
Дмитрий Левин 2010-04-06 23:54:18 +00:00
parent 6e63375495
commit 9676499f89

4
desc.c
View File

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