summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2017-03-19 10:37:03 +0000
committertrasz <trasz@FreeBSD.org>2017-03-19 10:37:03 +0000
commitd6e4bbe72d2e13c24b76b02b3b8ee7b64946d8cb (patch)
tree6c6eafae7c1fc016d77cccfb83877d316532cd6f /sys/compat/linux
parente5a9a3b50b98dd87e3cb41ade13824726f70eed1 (diff)
downloadFreeBSD-src-d6e4bbe72d2e13c24b76b02b3b8ee7b64946d8cb.zip
FreeBSD-src-d6e4bbe72d2e13c24b76b02b3b8ee7b64946d8cb.tar.gz
MFC r313804:
Improve debugging output.
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linux/linux.c b/sys/compat/linux/linux.c
index d1d7877..2846ad4 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)]);
OpenPOWER on IntegriCloud