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.0.8~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a39f6dd056550b61638e4e18300929af8939aadf;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 7c45301d7..6b32fb46c 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -741,7 +741,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;