format_proc_cpuinfo: fix microcode revision shift direction

This commit is contained in:
Brian Inglis 2020-07-07 13:00:37 -06:00 committed by Corinna Vinschen
parent 54bb6589c3
commit 7b2c7fca04
1 changed files with 1 additions and 1 deletions

View File

@ -735,7 +735,7 @@ format_proc_cpuinfo (void *, char *&destbuf)
memcpy (&microcode, uc[uci].uc_microcode, sizeof (microcode));
if (!(microcode & 0xFFFFFFFFLL)) /* some values in high bits */
microcode <<= 32; /* shift them down */
microcode >>= 32; /* shift them down */
}
}