From 80e80c40115e77bf3a08916b24e21e78503bbe8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Mon, 5 Oct 2015 12:12:17 +0100 Subject: [PATCH] Fix the type of i in lxc_mount_auto_mounts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index b219a8666..6728c7825 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -747,7 +747,7 @@ static unsigned long add_required_remount_flags(const char *s, const char *d, static int lxc_mount_auto_mounts(struct lxc_conf *conf, int flags, struct lxc_handler *handler) { int r; - size_t i; + int i; static struct { int match_mask; int match_flag;