Skip to content

Commit

Permalink
Avoid stupid cppcheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
doegox committed Nov 21, 2024
1 parent 325376d commit 7c95488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/mfc/card_only/staticnested_1nt.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ int main(int argc, char *const argv[]) {
, nt_par_err_arr[1]
, nt_par_err_arr[2]
, nt_par_err_arr[3]
, (nt_par_enc >> 3) & 1
, (nt_par_enc >> 2) & 1
, (nt_par_enc >> 1) & 1
, nt_par_enc & 1
, (uint8_t)((nt_par_enc >> 3) & 1)
, (uint8_t)((nt_par_enc >> 2) & 1)
, (uint8_t)((nt_par_enc >> 1) & 1)
, (uint8_t)(nt_par_enc & 1)
, nt ^ nt_enc
);

Expand Down

0 comments on commit 7c95488

Please sign in to comment.