chore: shfmt

This commit is contained in:
Stéphane Lesimple
2026-03-30 21:09:29 +02:00
parent c2542e9940
commit ebc9e91d78
3 changed files with 18 additions and 18 deletions

View File

@@ -38,7 +38,7 @@ check_CVE_2023_20593_linux() {
read_msr 0xc0011029
ret=$?
if [ "$ret" = "$READ_MSR_RET_OK" ]; then
if [ $(( ret_read_msr_value_lo >> 9 & 1 )) -eq 1 ]; then
if [ $((ret_read_msr_value_lo >> 9 & 1)) -eq 1 ]; then
pstatus green YES "FP_BACKUP_FIX bit set in DE_CFG"
fp_backup_fix=1
else