diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2007-05-27 17:27:59 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2007-05-27 17:27:59 +0000 |
| commit | 5aabce7698f02b074e59ad807f118643d4b6a5f8 (patch) | |
| tree | 5ac7ec93c5b57ad0010ec25af034d8b350ce919a | |
| parent | bdcfa9589b925f03253e54860d3dbef3c3828e0f (diff) | |
Notes
| -rw-r--r-- | sys/i386/i386/trap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 1bb26878453b..3fb3d2c9eb6f 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -854,9 +854,7 @@ trap_fatal(frame, eva) printf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12); printf("current process = "); if (curproc) { - printf("%lu (%s)\n", - (u_long)curproc->p_pid, curproc->p_comm ? - curproc->p_comm : ""); + printf("%lu (%s)\n", (u_long)curproc->p_pid, curproc->p_comm); } else { printf("Idle\n"); } |
