diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-21 13:41:03 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-21 13:41:03 +0200 |
commit | be059c77bf2042d7f32dd55aebd1bac662c5e7fd (patch) | |
tree | df8ec73bfac2504da5843bbc9026fc4516cd4e53 /ext2fs/dir.c | |
parent | 5f9c778164aff5bd79779b7ea4b54a9135335a94 (diff) |
Fix gcc warning
* ext2fs/dir.c (dirscanblock): Test ds->type against LOOKUP instead of
LOOKING. They happened to have the same value.
Diffstat (limited to 'ext2fs/dir.c')
-rw-r--r-- | ext2fs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/dir.c b/ext2fs/dir.c index 3a3e648d..a291436e 100644 --- a/ext2fs/dir.c +++ b/ext2fs/dir.c @@ -465,7 +465,7 @@ dirscanblock (vm_address_t blockaddr, struct node *dp, int idx, } if (consider_compress - && (ds->type == LOOKING + && (ds->type == LOOKUP || (ds->type == COMPRESS && ds->nbytes > nbytes))) { ds->type = CREATE; |