mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
bug fix on single core -xxC output
This commit is contained in:
parent
2a9bb12e51
commit
db4ff03d58
4
inxi
4
inxi
|
@ -10739,8 +10739,8 @@ print_cpu_data()
|
|||
fi
|
||||
# this handles bsd case unless we get a way to get max/min cpu speeds
|
||||
if [[ ${a_cpu_speeds[0]} != 'N/A' && ${a_cpu_speeds[2]} != 0 ]];then
|
||||
if [[ ${#A_CPU_DATA[@]} -eq 2 && $B_SHOW_CPU == 'true' \
|
||||
&& ${a_cpu_speeds[1]} != 0 ]];then
|
||||
if [[ $B_EXTRA_EXTRA_DATA == 'true' && ${#A_CPU_DATA[@]} -eq 2 &&
|
||||
$B_SHOW_CPU == 'true' && ${a_cpu_speeds[1]} != 0 ]];then
|
||||
a_cpu_working[1]="${a_cpu_speeds[0]} MHz (min/max ${a_cpu_speeds[1]}/${a_cpu_speeds[2]})"
|
||||
elif [[ ${a_cpu_speeds[0]} == ${a_cpu_speeds[2]} ]];then
|
||||
a_cpu_working[1]="${a_cpu_speeds[0]} MHz (max)"
|
||||
|
|
Loading…
Reference in a new issue