summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe/rf_debugMem.h
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>1999-09-05 01:46:35 +0000
committeroster <oster@NetBSD.org>1999-09-05 01:46:35 +0000
commite57673d0d49b8486bb65fc6551c87c9e5c70ba7b (patch)
tree0138802b97126dbb6cb2a193ec9c87fccee007d8 /sys/dev/raidframe/rf_debugMem.h
parent57f7d3320b6712e00507dde0c1565fcc1e8641f0 (diff)
Remove one of the two bzero calls in RF_Calloc -- the 2nd one doesn't
buy us anything at all.
Diffstat (limited to 'sys/dev/raidframe/rf_debugMem.h')
-rw-r--r--sys/dev/raidframe/rf_debugMem.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_debugMem.h b/sys/dev/raidframe/rf_debugMem.h
index ccb8c02a7ee..948e1b9b5ea 100644
--- a/sys/dev/raidframe/rf_debugMem.h
+++ b/sys/dev/raidframe/rf_debugMem.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_debugMem.h,v 1.5 1999/09/04 21:11:21 oster Exp $ */
+/* $NetBSD: rf_debugMem.h,v 1.6 1999/09/05 01:46:35 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -64,8 +64,7 @@ typedef u_int32_t U32;
#define RF_Calloc(_p_, _nel_, _elsz_, _cast_) \
{ \
RF_Malloc( _p_, (_nel_) * (_elsz_), _cast_); \
- bzero( (_p_), (_nel_) * (_elsz_) ); \
- }
+ }
#define RF_CallocAndAdd(__p,__nel,__elsz,__cast,__alist) \
{ \