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-1.1.4~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7a1093e1ed790360bd122c6e8d38509de906196;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 50ca8ddc1..5289466ba 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;