diff options
author | 2010-12-14 21:14:46 +0000 | |
---|---|---|
committer | 2010-12-14 21:14:46 +0000 | |
commit | aa2a9e173c2991f0697474cf5d36d7ceea3f486e (patch) | |
tree | 181787e96e7a39b4ef53c9bd5ab59679e5d4c042 | |
parent | disable access to the crypto(4) device from userland; ok deraadt (diff) | |
download | wireguard-openbsd-aa2a9e173c2991f0697474cf5d36d7ceea3f486e.tar.xz wireguard-openbsd-aa2a9e173c2991f0697474cf5d36d7ceea3f486e.zip |
There is no "struct filesystem"; uncovered by gcc4.
ok miod@
-rw-r--r-- | sys/arch/sparc/stand/common/promdev.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sparc/stand/common/promdev.c b/sys/arch/sparc/stand/common/promdev.c index c1ac9dfd093..e7197520bbe 100644 --- a/sys/arch/sparc/stand/common/promdev.c +++ b/sys/arch/sparc/stand/common/promdev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: promdev.c,v 1.11 2010/07/06 20:41:06 miod Exp $ */ +/* $OpenBSD: promdev.c,v 1.12 2010/12/14 21:14:46 kettenis Exp $ */ /* $NetBSD: promdev.c,v 1.16 1995/11/14 15:04:01 pk Exp $ */ /* @@ -73,9 +73,9 @@ int prom_nextsibling(int); static void prom0_fake(void); -extern struct filesystem file_system_nfs[]; -extern struct filesystem file_system_cd9660[]; -extern struct filesystem file_system_ufs[]; +extern struct fs_ops file_system_nfs[]; +extern struct fs_ops file_system_cd9660[]; +extern struct fs_ops file_system_ufs[]; int prom_open(struct open_file *f, ...) |