commit | 35a4e1b1c5cbb493842be6f901b155a9b4489b12 | [log] [tgz] |
---|---|---|
author | Theodore Ts'o <tytso@mit.edu> | Thu Sep 01 00:13:38 2016 -0400 |
committer | Theodore Ts'o <tytso@mit.edu> | Thu Sep 01 01:01:54 2016 -0400 |
tree | d17b5b38ff8ce499b1dbd1703ee49f86fe96c956 | |
parent | abae02902409363ebf42b955e3194d6c68593046 [diff] |
e2fsck: fix logic for deciding when to repair legacy timestamp encodings A static code checker noticed that we had a redundant condition: if (((sizeof(time_t) <= 4) || ((sizeof(time_t) > 4) && which was caused by the parenthesis were in the wrong place. Signed-off-by: Theodore Ts'o <tytso@mit.edu>