Fix string constant so it compiles again.

This commit is contained in:
pgoyette 2011-04-10 16:06:59 +00:00
parent c1bc70d6fb
commit f39adfe33e
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kdump.c,v 1.108 2011/04/10 14:38:19 christos Exp $ */
/* $NetBSD: kdump.c,v 1.109 2011/04/10 16:06:59 pgoyette Exp $ */
/*-
* Copyright (c) 1988, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
#if 0
static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95";
#else
__RCSID("$NetBSD: kdump.c,v 1.108 2011/04/10 14:38:19 christos Exp $");
__RCSID("$NetBSD: kdump.c,v 1.109 2011/04/10 16:06:59 pgoyette Exp $");
#endif
#endif /* not lint */
@ -951,7 +951,7 @@ ktrpsig(void *v, int len)
return;
case SI_LWP:
printf(": code=SI_LWP sent by pid=%d, "
"uid=%d")\n", si->si_pid, si->si_uid);
"uid=%d)\n", si->si_pid, si->si_uid);
return;
default:
code = NULL;