diff options
author | 2007-07-17 23:25:15 +0000 | |
---|---|---|
committer | 2007-07-17 23:25:15 +0000 | |
commit | 8d1f997993e615ab2933c6edafa782f5117a3fa2 (patch) | |
tree | e27dfa8895a99570f67bd4b699ba03f7dac44872 /sys | |
parent | more places where the difference between the hardware sample size (diff) | |
download | wireguard-openbsd-8d1f997993e615ab2933c6edafa782f5117a3fa2.tar.xz wireguard-openbsd-8d1f997993e615ab2933c6edafa782f5117a3fa2.zip |
Add missing '};' to end struct declaration. Compiles again.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_ste.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ste.c b/sys/dev/pci/if_ste.c index 026a9bbf653..273804c90d9 100644 --- a/sys/dev/pci/if_ste.c +++ b/sys/dev/pci/if_ste.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ste.c,v 1.39 2007/07/17 17:15:34 jasper Exp $ */ +/* $OpenBSD: if_ste.c,v 1.40 2007/07/17 23:25:15 krw Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -825,6 +825,7 @@ const struct pci_matchid ste_devices[] = { { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST201_1 }, { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST201_2 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_550TX } +}; /* * Probe for a Sundance ST201 chip. Check the PCI vendor and device |