diff --git a/CHANGES b/CHANGES index 375d38fb..ee386a1f 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,7 @@ SVN HEAD Update URI Program sensors: Drop ddcmon and eeprom support Add dme1737 support + Fix alignment of alarm for one-limit temperatures Program sensors-detect: Stop Super-I/O probe after first family success Fix SMSC DME1737 detection Add /usr/sbin to the PATH (#2199) diff --git a/prog/sensors/chips.c b/prog/sensors/chips.c index a1c7e35b..af468f48 100644 --- a/prog/sensors/chips.c +++ b/prog/sensors/chips.c @@ -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)