From: Stéphane Graber Date: Mon, 5 Oct 2015 11:12:17 +0000 (+0100) Subject: Fix the type of i in lxc_mount_auto_mounts X-Git-Tag: lxc-2.0.0.beta1~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80e80c40115e77bf3a08916b24e21e78503bbe8a;p=thirdparty%2Flxc.git Fix the type of i in lxc_mount_auto_mounts Signed-off-by: Stéphane Graber --- 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;