2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-30 13:57:41 +00:00

Don't sort the same list twice.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4611 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2007-07-14 16:32:56 +00:00
parent c100b4f38b
commit d73a25b166

View File

@@ -3121,7 +3121,7 @@ sub scan_adapter
if (@chips) {
print ", other addresses:";
@chips = sort @chips;
foreach $other_addr (sort @chips) {
foreach $other_addr (@chips) {
printf(" 0x%02x",$other_addr);
}
}