From: Christian Brauner Date: Fri, 5 Feb 2021 10:05:15 +0000 (+0100) Subject: attach_options: use size_t for lxc_groups_t X-Git-Tag: lxc-5.0.0~299^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb4dbb516cf5a6189a1ac41d609b90291bc9394d;p=thirdparty%2Flxc.git attach_options: use size_t for lxc_groups_t Signed-off-by: Christian Brauner --- 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;