[alpine-devel] [PATCH] abuild-sudo: remove unused variable
Export this patch
This prevents clang from issuing a warning here.
---
abuild-sudo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/abuild-sudo.c b/abuild-sudo.c
index 3afd887..80ceb8d 100644
--- a/abuild-sudo.c
+++ b/abuild-sudo.c
@@ -50,7 +50,7 @@ int is_in_group(gid_t group)
{
int ngroups_max = sysconf(_SC_NGROUPS_MAX) + 1;
gid_t *buf = malloc(ngroups_max * sizeof(gid_t));
- int ngroups, ret = 0;
+ int ngroups;
int i;
if (buf == NULL) {
perror("malloc");
applied. thanks!
-nc
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---
--
2.17.2 (Apple Git-113)
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---