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:
parent
f7adee2314
commit
efc12d78f7
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user