From 7dbfe57c15e243f8044a3ce6e4baafcc750b527b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 3 Aug 2005 11:27:30 +0000 Subject: 2005-07-22 James Lentini * bjm.c (sys_init_module): Display all three arguments. * linux/syscallent.h: Update argument count. --- bjm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bjm.c') diff --git a/bjm.c b/bjm.c index 68a2185..5947a41 100644 --- a/bjm.c +++ b/bjm.c @@ -197,8 +197,9 @@ sys_init_module(tcp) struct tcb *tcp; { if (entering(tcp)) { - printpath(tcp, tcp->u_arg[0]); - tprintf(", %#lx", tcp->u_arg[1]); + tprintf("%#lx, ", tcp->u_arg[0]); + tprintf("%lu, ", tcp->u_arg[1]); + printstr(tcp, tcp->u_arg[2], -1); } return 0; } -- cgit v1.2.3