diff options
Diffstat (limited to 'contrib/bmake/filemon/filemon_dev.c')
-rw-r--r-- | contrib/bmake/filemon/filemon_dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/bmake/filemon/filemon_dev.c b/contrib/bmake/filemon/filemon_dev.c index 85e56689f10d..afedb3c57e58 100644 --- a/contrib/bmake/filemon/filemon_dev.c +++ b/contrib/bmake/filemon/filemon_dev.c @@ -1,4 +1,4 @@ -/* $NetBSD: filemon_dev.c,v 1.3 2020/07/10 15:53:30 sjg Exp $ */ +/* $NetBSD: filemon_dev.c,v 1.4 2020/11/05 17:27:16 rillig Exp $ */ /*- * Copyright (c) 2020 The NetBSD Foundation, Inc. @@ -65,7 +65,7 @@ filemon_open(void) int error; /* Allocate and zero a struct filemon object. */ - F = calloc(1, sizeof(*F)); + F = calloc(1, sizeof *F); if (F == NULL) return NULL; |