summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorminoura <minoura@NetBSD.org>1999-03-18 16:15:53 +0000
committerminoura <minoura@NetBSD.org>1999-03-18 16:15:53 +0000
commit7cc089a5dd2ee2d1dd016460cd8ce46341b4d353 (patch)
tree96d029228c2ad0f86827e203f60f05021b851f8f /sys
parent815f84a789d89683fe4df7a9e53273085401f94e (diff)
Correct rnd_attach_source args.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/x68k/dev/fd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/x68k/dev/fd.c b/sys/arch/x68k/dev/fd.c
index 90c4e24cd1c..18e52b75e24 100644
--- a/sys/arch/x68k/dev/fd.c
+++ b/sys/arch/x68k/dev/fd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fd.c,v 1.25 1999/03/16 16:30:17 minoura Exp $ */
+/* $NetBSD: fd.c,v 1.26 1999/03/18 16:15:53 minoura Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -614,7 +614,8 @@ fdattach(parent, self, aux)
mountroothook_establish(fd_mountroot_hook, &fd->sc_dev);
#if NRND > 0
- rnd_attach_source(&fd->rnd_source, fd->sc_dev.dv_xname, RND_TYPE_DISK);
+ rnd_attach_source(&fd->rnd_source, fd->sc_dev.dv_xname,
+ RND_TYPE_DISK, 0);
#endif
}