Changeset 4714

Show
Ignore:
Timestamp:
08/26/07 22:33:21 (6 years ago)
Author:
khali
Message:

Labels do fit in the imparted space by construction now, so no need
to check.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/prog/sensors/chips.c

    r4713 r4714  
    8686{ 
    8787        int len = strlen(label)+1; 
    88         if (len > space) 
    89                 printf("%s:\n%*s", label, space, ""); 
    90         else 
    91                 printf("%s:%*s", label, space - len, ""); 
     88        printf("%s:%*s", label, space - len, ""); 
    9289} 
    9390