diff options
Diffstat (limited to 'libshouldbeinlibc/cacheq.c')
-rw-r--r-- | libshouldbeinlibc/cacheq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libshouldbeinlibc/cacheq.c b/libshouldbeinlibc/cacheq.c index c1be59c0..5912f84c 100644 --- a/libshouldbeinlibc/cacheq.c +++ b/libshouldbeinlibc/cacheq.c @@ -97,7 +97,7 @@ cacheq_set_length (struct cacheq *cq, int length) if (fh && th) bcopy (fh, th, esz); /* Copy the bits in a moved entry. */ else if (th) - bzero (th, esz); /* Zero the bits in a new entry. */ + memset (th, 0, esz); /* Zero the bits in a new entry. */ if (th) /* Fixup headers. */ |