2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Missing space before pc87366 temperature alarms.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2550 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2004-05-18 19:49:08 +00:00
parent 93dfb6fa12
commit 078a40c7c6

View File

@@ -4123,9 +4123,9 @@ void print_pc87366(const sensors_chip_name *name)
print_label(label, 10);
print_temp_info(cur, max, min, MINMAX, 0, 0);
if (i<3 && status&PC87365_STATUS_TEMP_OPEN)
printf("OPEN");
printf(" OPEN");
else if (status&(PC87365_STATUS_TEMP_MIN|PC87365_STATUS_TEMP_MAX))
printf("ALARM");
printf(" ALARM");
printf("\n");
}
} else
@@ -4138,7 +4138,7 @@ void print_pc87366(const sensors_chip_name *name)
print_label(label, 10);
print_temp_info(cur, 0, 0, SINGLE, 0, 0);
if (status&PC87365_STATUS_TEMP_CRIT)
printf("ALARM");
printf(" ALARM");
printf("\n");
}
} else