indent(1): replace function call to bzero with memset.

Reference:
7422f42f80

Differential Revision: https://reviews.freebsd.org/D6966  (Partial)
Submitted by:	Piotr Stefaniak
This commit is contained in:
Pedro F. Giffuni 2016-07-31 21:36:40 +00:00
parent f7adee2314
commit efc12d78f7

View File

@ -629,7 +629,7 @@ parsefont(struct fstate *f, const char *s0)
const char *s = s0;
int sizedelta = 0;
bzero(f, sizeof *f);
memset(f, 0, sizeof(struct fstate));
while (*s) {
if (isdigit(*s))
f->size = f->size * 10 + *s - '0';