diff -r 1e8e0c82c1f5 -r 97757a798918 Hardware/HDD/HDD.cs --- a/Hardware/HDD/HDD.cs Sat Oct 16 18:26:47 2010 +0000 +++ b/Hardware/HDD/HDD.cs Sun Oct 17 08:21:33 2010 +0000 @@ -77,7 +77,8 @@ this.drive = drive; this.count = 0; this.lifeID = lifeID; - this.lifeSensor = new Sensor("HDD", 0, SensorType.Level, this, settings); + this.lifeSensor = new Sensor("Remaining life", 0, SensorType.Level, + this, settings); Update(); } @@ -136,7 +137,7 @@ attributes.Exists(attr => (int)attr.ID == (int)lifeID)) { lifeSensor.Value = attributes - .Find(attr => (int)attr.ID == (int)temperatureID) + .Find(attr => (int)attr.ID == (int)lifeID) .AttrValue; } } else {