diff options
author | 2000-09-19 06:10:09 +0000 | |
---|---|---|
committer | 2000-09-19 06:10:09 +0000 | |
commit | 0eb52f723ea56c07c1cbec324e00f43d3f079a22 (patch) | |
tree | 1dd013f89953c5ac1b8b3658cf308f5dd0d03a70 /sys | |
parent | sync (diff) | |
download | wireguard-openbsd-0eb52f723ea56c07c1cbec324e00f43d3f079a22.tar.xz wireguard-openbsd-0eb52f723ea56c07c1cbec324e00f43d3f079a22.zip |
Remove annoying debugging print that was introduced with the cmap setting code.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/pci/vgafb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/powerpc/pci/vgafb.c b/sys/arch/powerpc/pci/vgafb.c index 91d7e9cfc9d..264b1a8db04 100644 --- a/sys/arch/powerpc/pci/vgafb.c +++ b/sys/arch/powerpc/pci/vgafb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb.c,v 1.4 2000/09/19 05:56:51 rahnds Exp $ */ +/* $OpenBSD: vgafb.c,v 1.5 2000/09/19 06:10:09 rahnds Exp $ */ /* $NetBSD: vga.c,v 1.3 1996/12/02 22:24:54 cgd Exp $ */ /* @@ -554,7 +554,6 @@ vgafb_putcmap(vc, cm) g = &(vc->vc_cmap_green[index]); b = &(vc->vc_cmap_blue[index]); - printf("ofh = %x\n", vc->vc_ofh); for (i = 0; i < count; i++) { OF_call_method_1("color!", vc->vc_ofh, 4, *r, *g, *b, index); r++, g++, b++, index++; |