From 725f5669bc03ed9a766e2c51c465e082172e6dae Mon Sep 17 00:00:00 2001 From: Thordur Bjornsson Date: Wed, 14 Mar 2012 14:45:52 +0100 Subject: Fix openbsd_pci.c:pci_device_vgaarb_set_target(); A return (0) got lost, add it back. Signed-off-by: Matthieu Herrb Reviewed-by: Mark Kettenis --- src/openbsd_pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openbsd_pci.c b/src/openbsd_pci.c index 74b3636..73c68f4 100644 --- a/src/openbsd_pci.c +++ b/src/openbsd_pci.c @@ -733,6 +733,7 @@ int pci_device_vgaarb_set_target(struct pci_device *dev) { pci_sys->vga_target = dev; + return (0); } int -- cgit v1.2.3