diff options
| -rw-r--r-- | sys/amd64/amd64/fpu.c | 6 | ||||
| -rw-r--r-- | sys/amd64/isa/npx.c | 6 | ||||
| -rw-r--r-- | sys/i386/isa/npx.c | 6 | ||||
| -rw-r--r-- | sys/pc98/pc98/npx.c | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c index 91f34e3114c5..7a7aeb014674 100644 --- a/sys/amd64/amd64/fpu.c +++ b/sys/amd64/amd64/fpu.c @@ -607,9 +607,9 @@ npxexit(td) */ if (masked_exceptions & 0x0d) log(LOG_ERR, - "pid %d (%s) exited with masked floating" - " point exceptions 0x%02x\n", - td->td_proc->p_pid, td->td_proc->p_comm, masked_exceptions); + "pid %d (%s) exited with masked floating point exceptions 0x%02x\n", + td->td_proc->p_pid, td->td_proc->p_comm, + masked_exceptions); } #endif } diff --git a/sys/amd64/isa/npx.c b/sys/amd64/isa/npx.c index 91f34e3114c5..7a7aeb014674 100644 --- a/sys/amd64/isa/npx.c +++ b/sys/amd64/isa/npx.c @@ -607,9 +607,9 @@ npxexit(td) */ if (masked_exceptions & 0x0d) log(LOG_ERR, - "pid %d (%s) exited with masked floating" - " point exceptions 0x%02x\n", - td->td_proc->p_pid, td->td_proc->p_comm, masked_exceptions); + "pid %d (%s) exited with masked floating point exceptions 0x%02x\n", + td->td_proc->p_pid, td->td_proc->p_comm, + masked_exceptions); } #endif } diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index 91f34e3114c5..7a7aeb014674 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -607,9 +607,9 @@ npxexit(td) */ if (masked_exceptions & 0x0d) log(LOG_ERR, - "pid %d (%s) exited with masked floating" - " point exceptions 0x%02x\n", - td->td_proc->p_pid, td->td_proc->p_comm, masked_exceptions); + "pid %d (%s) exited with masked floating point exceptions 0x%02x\n", + td->td_proc->p_pid, td->td_proc->p_comm, + masked_exceptions); } #endif } diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index 7c76951d444e..50dc08e7e7b5 100644 --- a/sys/pc98/pc98/npx.c +++ b/sys/pc98/pc98/npx.c @@ -660,9 +660,9 @@ npxexit(td) */ if (masked_exceptions & 0x0d) log(LOG_ERR, - "pid %d (%s) exited with masked floating" - " point exceptions 0x%02x\n", - td->td_proc->p_pid, td->td_proc->p_comm, masked_exceptions); + "pid %d (%s) exited with masked floating point exceptions 0x%02x\n", + td->td_proc->p_pid, td->td_proc->p_comm, + masked_exceptions); } #endif } |
