diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-08-04 18:29:44 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-08-04 18:29:44 +0000 |
commit | cd5361146557ad66e814268730a2cc02743e34b3 (patch) | |
tree | 951102e4ae88dcef6beb6107a5f41934c16889d4 /sys/dev/pci/vga_pci.c | |
parent | e360880c95cd112595c7978f085f0a8f6035e374 (diff) |
Add missing brace.
ok deraadt@
Diffstat (limited to 'sys/dev/pci/vga_pci.c')
-rw-r--r-- | sys/dev/pci/vga_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c index 97046e732ad..c04b5e80751 100644 --- a/sys/dev/pci/vga_pci.c +++ b/sys/dev/pci/vga_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vga_pci.c,v 1.58 2010/08/04 17:50:38 deraadt Exp $ */ +/* $OpenBSD: vga_pci.c,v 1.59 2010/08/04 18:29:43 matthew Exp $ */ /* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */ /* @@ -317,6 +317,7 @@ vga_pci_activate(struct device *self, int act) printf("%s: reposting video using BIOS. Is this neccessary?\n", sc->sc_dev.dv_xname); vga_post_call(sc->sc_posth); + } #endif rv = config_activate_children(self, act); break; |