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 * Copyright (c) 1988, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
#if 0 #if 0
static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95"; static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95";
#else #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
#endif /* not lint */ #endif /* not lint */
@ -951,7 +951,7 @@ ktrpsig(void *v, int len)
return; return;
case SI_LWP: case SI_LWP:
printf(": code=SI_LWP sent by pid=%d, " 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; return;
default: default:
code = NULL; code = NULL;