From ee445bda8127c567af3da152d2d2a159d190c605 Mon Sep 17 00:00:00 2001 From: dchagin Date: Tue, 15 Feb 2011 21:24:50 +0000 Subject: Style(9) fix. Wrap long lines in linux_rt_sigtimedwait(). --- sys/compat/linux/linux_signal.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'sys/compat/linux') diff --git a/sys/compat/linux/linux_signal.c b/sys/compat/linux/linux_signal.c index 9d28c0f..381fe1e 100644 --- a/sys/compat/linux/linux_signal.c +++ b/sys/compat/linux/linux_signal.c @@ -457,8 +457,9 @@ linux_rt_sigtimedwait(struct thread *td, return (error); #ifdef DEBUG if (ldebug(rt_sigtimedwait)) - printf(LMSG("linux_rt_sigtimedwait: incoming timeout (%d/%d)\n"), - ltv.tv_sec, ltv.tv_usec); + printf(LMSG("linux_rt_sigtimedwait: " + "incoming timeout (%d/%d)\n"), + ltv.tv_sec, ltv.tv_usec); #endif tv.tv_sec = (long)ltv.tv_sec; tv.tv_usec = (suseconds_t)ltv.tv_usec; @@ -477,8 +478,9 @@ linux_rt_sigtimedwait(struct thread *td, timevalclear(&tv); #ifdef DEBUG if (ldebug(rt_sigtimedwait)) - printf(LMSG("linux_rt_sigtimedwait: converted timeout (%jd/%ld)\n"), - (intmax_t)tv.tv_sec, tv.tv_usec); + printf(LMSG("linux_rt_sigtimedwait: " + "converted timeout (%jd/%ld)\n"), + (intmax_t)tv.tv_sec, tv.tv_usec); #endif } TIMEVAL_TO_TIMESPEC(&tv, &ts); @@ -487,7 +489,8 @@ linux_rt_sigtimedwait(struct thread *td, error = kern_sigtimedwait(td, bset, &info, tsa); #ifdef DEBUG if (ldebug(rt_sigtimedwait)) - printf(LMSG("linux_rt_sigtimedwait: sigtimedwait returning (%d)\n"), error); + printf(LMSG("linux_rt_sigtimedwait: " + "sigtimedwait returning (%d)\n"), error); #endif if (error) return (error); -- cgit v1.1