diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-12-14 21:14:47 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-12-14 21:14:47 +0000 |
commit | b4cc9031eaa812b7003fb34681cbdfa57b828b28 (patch) | |
tree | 5c375a483b5434272521c19543c3ee806e98baea | |
parent | d976f152bf123c6fd9d30a4de2f815a40093eb54 (diff) |
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, ...) |