../../misc/e4defrag.c:1821:8: warning: statement will never be executed [-Wswitch-unreachable] int mount_dir_len = 0; Also fix a typo in a few comments. Signed-off-by: Marc Thomas <marc@xxxxxxxxxxxxxxxxxx> --- misc/e4defrag.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/misc/e4defrag.c b/misc/e4defrag.c index 84501d17..62860eb1 100644 --- a/misc/e4defrag.c +++ b/misc/e4defrag.c @@ -1676,6 +1676,7 @@ int main(int argc, char *argv[]) int flags = FTW_PHYS | FTW_MOUNT; int arg_type = -1; int success_flag = 0; + int mount_dir_len = 0; char dir_name[PATH_MAX + 1]; char dev_name[PATH_MAX + 1]; struct stat64 buf; @@ -1818,7 +1819,6 @@ int main(int argc, char *argv[]) } switch (arg_type) { - int mount_dir_len = 0; case DIRNAME: if (!(mode_flag & STATISTIC)) @@ -1830,11 +1830,11 @@ int main(int argc, char *argv[]) strncat(lost_found_dir, "/lost+found", PATH_MAX - strnlen(lost_found_dir, PATH_MAX)); - /* Not the case("e4defrag mount_piont_dir") */ + /* Not the case("e4defrag mount_point_dir") */ if (dir_name[mount_dir_len] != '\0') { /* - * "e4defrag mount_piont_dir/lost+found" - * or "e4defrag mount_piont_dir/lost+found/" + * "e4defrag mount_point_dir/lost+found" + * or "e4defrag mount_point_dir/lost+found/" */ if (strncmp(lost_found_dir, dir_name, strnlen(lost_found_dir, @@ -1848,7 +1848,7 @@ int main(int argc, char *argv[]) continue; } - /* "e4defrag mount_piont_dir/else_dir" */ + /* "e4defrag mount_point_dir/else_dir" */ memset(lost_found_dir, 0, PATH_MAX + 1); } case DEVNAME: -- 2.13.0