summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe/rf_alloclist.c
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2001-07-18 06:45:33 +0000
committerthorpej <thorpej@NetBSD.org>2001-07-18 06:45:33 +0000
commitcf56c44a86ea6c9a5a196dd9d0e2270d0da52e69 (patch)
tree68007cd4fd7fc3a3b75ff45d59efd1de489c2816 /sys/dev/raidframe/rf_alloclist.c
parent0a9ceae7505d0f818fe46fc77f15a837bd8d8229 (diff)
bzero -> memset
Diffstat (limited to 'sys/dev/raidframe/rf_alloclist.c')
-rw-r--r--sys/dev/raidframe/rf_alloclist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_alloclist.c b/sys/dev/raidframe/rf_alloclist.c
index 8514e463bff..026e95cd982 100644
--- a/sys/dev/raidframe/rf_alloclist.c
+++ b/sys/dev/raidframe/rf_alloclist.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_alloclist.c,v 1.4 1999/08/13 03:41:53 oster Exp $ */
+/* $NetBSD: rf_alloclist.c,v 1.5 2001/07/18 06:45:33 thorpej Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -182,6 +182,6 @@ rf_real_MakeAllocList(lockflag)
if (p == NULL) {
return (NULL);
}
- bzero((char *) p, sizeof(RF_AllocListElem_t));
+ memset((char *) p, 0, sizeof(RF_AllocListElem_t));
return (p);
}