From fb4dbb516cf5a6189a1ac41d609b90291bc9394d Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Fri, 5 Feb 2021 11:05:15 +0100 Subject: [PATCH] attach_options: use size_t for lxc_groups_t Signed-off-by: Christian Brauner --- src/lxc/attach_options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/attach_options.h b/src/lxc/attach_options.h index c24fb9120..d018970c3 100644 --- a/src/lxc/attach_options.h +++ b/src/lxc/attach_options.h @@ -54,7 +54,7 @@ enum { typedef int (*lxc_attach_exec_t)(void* payload); typedef struct lxc_groups_t { - int size; + size_t size; gid_t *list; } lxc_groups_t; -- 2.47.2