On Tue, Mar 10, 2015 at 05:01:26PM -0400, Eric Sandeen wrote: > We're testing for an impossible case in here: > > if (i == num_entries - 1) { > ... > } else { > ... > if (i == num_entries - 1) > /* can't happen! */ > ... > } > > So, remove the impossible case. > > Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> > --- Reviewed-by: Brian Foster <bfoster@xxxxxxxxxx> > > diff --git a/repair/dir2.c b/repair/dir2.c > index 25793e9..7aede6a 100644 > --- a/repair/dir2.c > +++ b/repair/dir2.c > @@ -928,26 +928,12 @@ _("size of last entry overflows space left in in shortform dir %" PRIu64 ", "), > do_warn( > _("size of entry #%d overflows space left in in shortform dir %" PRIu64 "\n"), > i, ino); > - if (!no_modify) { > - if (i == num_entries - 1) > - do_warn( > - _("junking entry #%d\n"), > - i); > - else > - do_warn( > - _("junking %d entries\n"), > - num_entries - i); > - } else { > - if (i == num_entries - 1) > - do_warn( > - _("would junk entry #%d\n"), > - i); > - else > - do_warn( > - _("would junk %d entries\n"), > - num_entries - i); > - } > - > + if (!no_modify) > + do_warn(_("junking %d entries\n"), > + num_entries - i); > + else > + do_warn(_("would junk %d entries\n"), > + num_entries - i); > break; > } > } > > _______________________________________________ > xfs mailing list > xfs@xxxxxxxxxxx > http://oss.sgi.com/mailman/listinfo/xfs _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs