mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-31 14:25:39 +00:00
Fix alignment of alarm for one-limit temperatures.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4421 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -61,7 +61,7 @@ void print_temp_info_real(float n_cur, float n_over, float n_hyst, float n_lim,
|
||||
limitprec, n_hyst, degstr,
|
||||
limitprec, n_over, degstr);
|
||||
else if(minmax == MAXONLY)
|
||||
printf("%+6.*f%s (high = %+5.*f%s) ",
|
||||
printf("%+6.*f%s (high = %+5.*f%s) ",
|
||||
curprec, n_cur, degstr,
|
||||
limitprec, n_over, degstr);
|
||||
else if(minmax == CRIT)
|
||||
@@ -78,7 +78,7 @@ void print_temp_info_real(float n_cur, float n_over, float n_hyst, float n_lim,
|
||||
printf("%+6.*f%s",
|
||||
curprec, n_cur, degstr);
|
||||
else if(minmax == HYSTONLY)
|
||||
printf( "%+6.*f%s (hyst = %+5.*f%s) ",
|
||||
printf("%+6.*f%s (hyst = %+5.*f%s) ",
|
||||
curprec, n_cur, degstr,
|
||||
limitprec, n_over, degstr);
|
||||
else if(minmax == LIM)
|
||||
|
Reference in New Issue
Block a user