more cleanups of logic, this should be about it for 2.2.5

This commit is contained in:
inxi-svn 2014-09-17 04:18:50 +00:00
parent 351d4932e2
commit 50abd139f1

9
inxi
View file

@ -3973,14 +3973,13 @@ get_cpu_data()
# this is / was used in inxi short output only, but when it is N/A, need to use the previous array # this is / was used in inxi short output only, but when it is N/A, need to use the previous array
# value, from above, the actual speed that is, for short output, key 0. # value, from above, the actual speed that is, for short output, key 0.
sub(/\.[0-9]+$/,"",max)
sub(/\.[0-9]+$/,"",speed)
sub(/\.[0-9]+$/,"",min)
if (speed == 0) { if (speed == 0) {
print "N/A,0,0" print "N/A," min "," max
exit
} }
else { else {
sub(/\.[0-9]+$/,"",max)
sub(/\.[0-9]+$/,"",speed)
sub(/\.[0-9]+$/,"",min)
print speed "," min "," max print speed "," min "," max
} }
} }