Fix indent in printf message.

This commit is contained in:
tsutsui 2007-07-19 12:42:46 +00:00
parent f65c16a601
commit 9463f365d3
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.114 2007/05/17 14:51:12 yamt Exp $ */
/* $NetBSD: trap.c,v 1.115 2007/07/19 12:42:46 tsutsui Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@ -100,7 +100,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.114 2007/05/17 14:51:12 yamt Exp $");
__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.115 2007/07/19 12:42:46 tsutsui Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -214,7 +214,7 @@ printtrap(const u_long a0, const u_long a1, const u_long a2,
framep->tf_regs[FRAME_RA]);
printf("CPU %lu pv = 0x%lx\n", cpu_id,
framep->tf_regs[FRAME_T12]);
printf("CPU %lu curlwp = %p\n", cpu_id, curlwp);
printf("CPU %lu curlwp = %p\n", cpu_id, curlwp);
printf("CPU %lu pid = %d, comm = %s\n", cpu_id,
curproc->p_pid, curproc->p_comm);
printf("\n");