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; }