From 8081c6ce6b015d80363d15138de2495c6a7d8487 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Thu, 16 Feb 2017 10:36:00 +0000 Subject: [PATCH] Improve debugging output. MFC after: 2 weeks Sponsored by: DARPA, AFRL --- sys/compat/linux/linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux.c b/sys/compat/linux/linux.c index d1d787742c63..2846ad4935e5 100644 --- a/sys/compat/linux/linux.c +++ b/sys/compat/linux/linux.c @@ -128,7 +128,7 @@ int linux_to_bsd_signal(int sig) { - KASSERT(sig > 0 && sig <= LINUX_SIGRTMAX, ("Invalid Linux signal\n")); + KASSERT(sig > 0 && sig <= LINUX_SIGRTMAX, ("invalid Linux signal %d\n", sig)); if (sig < LINUX_SIGRTMIN) return (linux_to_bsd_sigtbl[_SIG_IDX(sig)]);