From db4ff03d58760d083eb00d0102644c890a313dab Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Wed, 17 Sep 2014 04:46:36 +0000 Subject: [PATCH] bug fix on single core -xxC output --- inxi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inxi b/inxi index 01277a4..a3388cf 100755 --- a/inxi +++ b/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)"