From f49e1b6ebbc2fe48a30a12f3ba31307dde4c76bf Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Sun, 23 Mar 2014 18:55:41 -0400 Subject: [PATCH] watchdog: remove redundant recalculation of callno --- watchdog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchdog.c b/watchdog.c index 65a222f..504b16e 100644 --- a/watchdog.c +++ b/watchdog.c @@ -246,7 +246,7 @@ static void stuck_syscall_info(int childno) output(0, "[%d] Stuck in syscall %d:%s%s%s.\n", pid, callno, - print_syscall_name(shm->syscallno[childno], shm->do32bit[childno]), + print_syscall_name(callno, shm->do32bit[childno]), shm->do32bit[childno] ? " (32bit)" : "", fdstr); } -- 2.11.4.GIT