From 7e95514fdcc7a33ac5c9281eec065471c6682f82 Mon Sep 17 00:00:00 2001 From: macallan Date: Mon, 19 Nov 2007 04:00:39 +0000 Subject: [PATCH] sprinkle \n --- sys/dev/wsfb/genfb.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/dev/wsfb/genfb.c b/sys/dev/wsfb/genfb.c index d5c2c51d70ac..f7997b25ea7a 100644 --- a/sys/dev/wsfb/genfb.c +++ b/sys/dev/wsfb/genfb.c @@ -1,4 +1,4 @@ -/* $NetBSD: genfb.c,v 1.11 2007/11/05 16:57:46 macallan Exp $ */ +/* $NetBSD: genfb.c,v 1.12 2007/11/19 04:00:39 macallan Exp $ */ /*- * Copyright (c) 2007 Michael Lorenz @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.11 2007/11/05 16:57:46 macallan Exp $"); +__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.12 2007/11/19 04:00:39 macallan Exp $"); #include #include @@ -96,21 +96,21 @@ genfb_init(struct genfb_softc *sc) printf(prop_dictionary_externalize(dict)); #endif if (!prop_dictionary_get_uint32(dict, "width", &sc->sc_width)) { - GPRINTF("no width property"); + GPRINTF("no width property\n"); return; } if (!prop_dictionary_get_uint32(dict, "height", &sc->sc_height)) { - GPRINTF("no height property"); + GPRINTF("no height property\n"); return; } if (!prop_dictionary_get_uint32(dict, "depth", &sc->sc_depth)) { - GPRINTF("no depth property"); + GPRINTF("no depth property\n"); return; } /* XXX should be a 64bit value */ if (!prop_dictionary_get_uint32(dict, "address", &fboffset)) { - GPRINTF("no address property"); + GPRINTF("no address property\n"); return; }