From f5ae31ebd3d49a064cb85ccd62a75198883cec3b Mon Sep 17 00:00:00 2001 From: "Andrew G. Morgan" Date: Mon, 30 Aug 2021 20:01:13 -0700 Subject: Be more consistent with make variables. Noticed that we weren't applying the same amount of flag discipline to local BUILD_* tool rules. Fixing that, I see we've been carrying a source code issue in libcap/_makenames.c for a while. (FIXED). Signed-off-by: Andrew G. Morgan --- libcap/_makenames.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcap/_makenames.c') diff --git a/libcap/_makenames.c b/libcap/_makenames.c index c0d6db4..30eb080 100644 --- a/libcap/_makenames.c +++ b/libcap/_makenames.c @@ -26,7 +26,7 @@ struct { * indicated extended empty space. */ static void *recalloc(void *p, int was, int is) { - void *n = realloc(p, is); + char *n = realloc(p, is); if (!n) { fputs("out of memory", stderr); exit(1); -- cgit v1.2.1