Skip to content

Commit

Permalink
Fixed integer conversion warning from Code Composer Studio
Browse files Browse the repository at this point in the history
Proposed by FiddlingBits
  • Loading branch information
geky committed Aug 3, 2023
1 parent 611c9b2 commit d775b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,7 @@ static int lfs_dir_commitcrc(lfs_t *lfs, struct lfs_commit *commit) {
}

// space for fcrc?
uint8_t eperturb = -1;
uint8_t eperturb = (uint8_t)-1;
if (noff >= end && noff <= lfs->cfg->block_size - lfs->cfg->prog_size) {
// first read the leading byte, this always contains a bit
// we can perturb to avoid writes that don't change the fcrc
Expand Down

0 comments on commit d775b46

Please sign in to comment.