Fix below compiler (gcc5) warning which isn't autoconf result dependent. mounts.c:1779:7: warning: variable 'ret' set but not used [-Wunused-but-set-variable] Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@xxxxxxxxx> --- lib/mounts.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/mounts.c b/lib/mounts.c index 1d1b4da..c67548e 100644 --- a/lib/mounts.c +++ b/lib/mounts.c @@ -1776,16 +1776,15 @@ static int remount_active_mount(struct autofs_point *ap, *ioctlfd = -1; } } else { - int ret; /* * What can I do if we can't remount the existing * mount(s) (possibly a partial failure), everything * following will be broken? */ if (type == t_indirect) - ret = do_remount_indirect(ap, fd, path); + do_remount_indirect(ap, fd, path); else - ret = do_remount_direct(ap, fd, path); + do_remount_direct(ap, fd, path); } debug(ap->logopt, "re-connected to mount %s", path); -- 2.5.5 -- To unsubscribe from this list: send the line "unsubscribe autofs" in