summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrahnds <rahnds@openbsd.org>2000-09-19 06:10:09 +0000
committerrahnds <rahnds@openbsd.org>2000-09-19 06:10:09 +0000
commit0eb52f723ea56c07c1cbec324e00f43d3f079a22 (patch)
tree1dd013f89953c5ac1b8b3658cf308f5dd0d03a70
parentsync (diff)
downloadwireguard-openbsd-0eb52f723ea56c07c1cbec324e00f43d3f079a22.tar.xz
wireguard-openbsd-0eb52f723ea56c07c1cbec324e00f43d3f079a22.zip
Remove annoying debugging print that was introduced with the cmap setting code.
-rw-r--r--sys/arch/powerpc/pci/vgafb.c3
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++;