]> git.cameronkatri.com Git - mandoc.git/blobdiff - man.c
bzero() -> memset() (noted by Joerg Sonnenberger).
[mandoc.git] / man.c
diff --git a/man.c b/man.c
index 6336f938ac5621671276c070c7d4e247f3a5f0ff..3631ef25ab4f53c453da2a2afecb8010c597ea83 100644 (file)
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/*     $Id: man.c,v 1.43 2009/10/26 07:11:06 kristaps Exp $ */
+/*     $Id: man.c,v 1.44 2009/10/27 08:26:12 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -175,7 +175,7 @@ static int
 man_alloc1(struct man *m)
 {
 
-       bzero(&m->meta, sizeof(struct man_meta));
+       memset(&m->meta, 0, sizeof(struct man_meta));
        m->flags = 0;
        m->last = calloc(1, sizeof(struct man_node));
        if (NULL == m->last)