diff options
author | 2002-10-12 01:09:43 +0000 | |
---|---|---|
committer | 2002-10-12 01:09:43 +0000 | |
commit | bc84bce2cf8db44d7e63fafe55206f5102427a45 (patch) | |
tree | 7bca4f728671423caa88412df14b6a41521a3c68 /sys/kern/uipc_socket2.c | |
parent | Add a bit on volatile vs volatile pointers. OK jason@ millert@ (diff) | |
download | wireguard-openbsd-bc84bce2cf8db44d7e63fafe55206f5102427a45.tar.xz wireguard-openbsd-bc84bce2cf8db44d7e63fafe55206f5102427a45.zip |
Remove more '\n's from panic() statements. Both trailing and leading.
Diff generated by Chris Kuethe.
Diffstat (limited to 'sys/kern/uipc_socket2.c')
-rw-r--r-- | sys/kern/uipc_socket2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c index cd18ff1db73..0cd2a3a177b 100644 --- a/sys/kern/uipc_socket2.c +++ b/sys/kern/uipc_socket2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_socket2.c,v 1.32 2002/10/10 22:27:30 art Exp $ */ +/* $OpenBSD: uipc_socket2.c,v 1.33 2002/10/12 01:09:45 krw Exp $ */ /* $NetBSD: uipc_socket2.c,v 1.11 1996/02/04 02:17:55 christos Exp $ */ /* @@ -450,7 +450,7 @@ sblastrecordchk(struct sockbuf *sb, const char *where) printf("packet chain:\n"); for (m = sb->sb_mb; m != NULL; m = m->m_nextpkt) printf("\t%p\n", m); - panic("sblastrecordchk from %s\n", where); + panic("sblastrecordchk from %s", where); } } |