diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-17 14:49:52 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-17 14:49:52 +0000 |
commit | b6a6f80d826143e7721ce520000ed3004f73c22e (patch) | |
tree | a40908bdbe925676b737ba4c83fb18f667388d36 /sys/dev | |
parent | a912c3199446b050129d5c829f2b28d6a2521ae8 (diff) |
No newline in panic messages
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/rasops/rasops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/rasops/rasops.c b/sys/dev/rasops/rasops.c index ee12668a18c..5a583452d48 100644 --- a/sys/dev/rasops/rasops.c +++ b/sys/dev/rasops/rasops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.c,v 1.4 2002/05/28 22:10:03 fgsch Exp $ */ +/* $OpenBSD: rasops.c,v 1.5 2002/07/17 14:49:51 miod Exp $ */ /* $NetBSD: rasops.c,v 1.35 2001/02/02 06:01:01 marcus Exp $ */ /*- @@ -182,7 +182,7 @@ rasops_reconfig(ri, wantrows, wantcols) s = splhigh(); if (ri->ri_font->fontwidth > 32 || ri->ri_font->fontwidth < 4) - panic("rasops_init: fontwidth assumptions botched!\n"); + panic("rasops_init: fontwidth assumptions botched!"); /* Need this to frob the setup below */ bpp = (ri->ri_depth == 15 ? 16 : ri->ri_depth); @@ -331,7 +331,7 @@ rasops_mapchar(cookie, c, cp) #ifdef DIAGNOSTIC if (ri->ri_font == NULL) - panic("rasops_mapchar: no font selected\n"); + panic("rasops_mapchar: no font selected"); #endif if (ri->ri_font->encoding != WSDISPLAY_FONTENC_ISO) { |