Correct inotify_rm_watch decoder

* file.c (sys_inotify_rm_watch): Print second argument as int.
This commit is contained in:
Дмитрий Левин 2012-03-11 15:33:34 +00:00
parent 531af48779
commit ab1a70c7a1

2
file.c
View File

@ -2660,7 +2660,7 @@ sys_inotify_rm_watch(struct tcb *tcp)
{
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprintf(", %ld", tcp->u_arg[1]);
tprintf(", %d", (int) tcp->u_arg[1]);
}
return 0;
}