summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2005-10-14 20:22:57 +0000
committerjhb <jhb@FreeBSD.org>2005-10-14 20:22:57 +0000
commitecc6e8dc5af1f495e8adcac90daf04742cc1a5e0 (patch)
tree237e3bbd1a39f4e1bf252110c54824c7c2d08869 /sys
parenta72fd404e37c3b21d6fdc31c3cd30b6b4dfb9445 (diff)
downloadFreeBSD-src-ecc6e8dc5af1f495e8adcac90daf04742cc1a5e0.zip
FreeBSD-src-ecc6e8dc5af1f495e8adcac90daf04742cc1a5e0.tar.gz
The signal code is now an int rather than a long, so update debug printfs.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/linux32/linux32_sysvec.c4
-rw-r--r--sys/i386/linux/linux_sysvec.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/linux32/linux32_sysvec.c b/sys/amd64/linux32/linux32_sysvec.c
index b9e7a5d..5cac383 100644
--- a/sys/amd64/linux32/linux32_sysvec.c
+++ b/sys/amd64/linux32/linux32_sysvec.c
@@ -295,7 +295,7 @@ linux_rt_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
#ifdef DEBUG
if (ldebug(rt_sendsig))
- printf(ARGS(rt_sendsig, "%p, %d, %p, %lu"),
+ printf(ARGS(rt_sendsig, "%p, %d, %p, %u"),
catcher, sig, (void*)mask, code);
#endif
/*
@@ -441,7 +441,7 @@ linux_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
#ifdef DEBUG
if (ldebug(sendsig))
- printf(ARGS(sendsig, "%p, %d, %p, %lu"),
+ printf(ARGS(sendsig, "%p, %d, %p, %u"),
catcher, sig, (void*)mask, code);
#endif
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index 8916183..e2df7f6 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -286,7 +286,7 @@ linux_rt_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
#ifdef DEBUG
if (ldebug(rt_sendsig))
- printf(ARGS(rt_sendsig, "%p, %d, %p, %lu"),
+ printf(ARGS(rt_sendsig, "%p, %d, %p, %u"),
catcher, sig, (void*)mask, code);
#endif
/*
@@ -428,7 +428,7 @@ linux_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
#ifdef DEBUG
if (ldebug(sendsig))
- printf(ARGS(sendsig, "%p, %d, %p, %lu"),
+ printf(ARGS(sendsig, "%p, %d, %p, %u"),
catcher, sig, (void*)mask, code);
#endif
OpenPOWER on IntegriCloud