Browse Source

Fix a little logic error

Laslo Hunhold 8 năm trước cách đây
mục cha
commit
0f7e022381
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      slstatus.c

+ 1 - 1
slstatus.c

@@ -169,7 +169,7 @@ cpu_freq(void)
 	int freq;
 
 	return (pscanf("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq",
-	               "%i", &freq) != 1) ?
+	               "%i", &freq) == 1) ?
 	       bprintf("%d", (freq + 500) / 1000) : unknown_str;
 }