diff options
| author | rillig <rillig@NetBSD.org> | 2020-11-28 23:39:58 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2020-11-28 23:39:58 +0000 |
| commit | 07401ecdfff977b3a2cb968c080a8b097eb1c528 (patch) | |
| tree | 60126481c4db9fcebcb402a6b8c122e963b90b90 /usr.bin/make/make.h | |
| parent | ed792fb67eaf455762cecc4a4f44d8b6c0aeedc1 (diff) | |
make(1): reduce memory allocation for CmdOpts.create
Diffstat (limited to 'usr.bin/make/make.h')
| -rw-r--r-- | usr.bin/make/make.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h index 5d964c62a6f..744145596d3 100644 --- a/usr.bin/make/make.h +++ b/usr.bin/make/make.h @@ -1,4 +1,4 @@ -/* $NetBSD: make.h,v 1.227 2020/11/28 23:35:44 rillig Exp $ */ +/* $NetBSD: make.h,v 1.228 2020/11/28 23:39:58 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -685,7 +685,7 @@ typedef struct CmdOpts { /* The target names specified on the command line. * Used to resolve .if make(...) statements. */ - StringList *create; + StringList create; } CmdOpts; |
