diff --git a/sm5/ataprint.c b/sm5/ataprint.c index 38031db944d4ed497d0d50c6751426e9d0bd9ca1..10a76edf362c221a8d764a5d46e72506f9187520 100644 --- a/sm5/ataprint.c +++ b/sm5/ataprint.c @@ -1,4 +1,4 @@ -// $Id: ataprint.c,v 1.1 2002/10/09 17:56:58 ballen4705 Exp $ +// $Id: ataprint.c,v 1.2 2002/10/10 21:36:47 ballen4705 Exp $ /* * ataprint.c * @@ -312,7 +312,7 @@ void PrintSmartAttribWithThres ( struct ata_smart_values data, if (data.vendor_attributes[i].id!=194 || rawvalue<200) printf ("%llu\n", rawvalue); else - printf("First: %u Second: %u Third: %u\n", + printf("%u (Lifetime Low/Max %u/%u)\n", data.vendor_attributes[i].raw[0], data.vendor_attributes[i].raw[2], data.vendor_attributes[i].raw[4]); diff --git a/sm5/ataprint.cpp b/sm5/ataprint.cpp index 00069b6db8fe7d201aeccf18895762c8ff00731b..79fd7e3574ac18e763f6c86043f58c4fc60ae4c4 100644 --- a/sm5/ataprint.cpp +++ b/sm5/ataprint.cpp @@ -1,4 +1,4 @@ -// $Id: ataprint.cpp,v 1.1 2002/10/09 17:56:58 ballen4705 Exp $ +// $Id: ataprint.cpp,v 1.2 2002/10/10 21:36:47 ballen4705 Exp $ /* * ataprint.c * @@ -312,7 +312,7 @@ void PrintSmartAttribWithThres ( struct ata_smart_values data, if (data.vendor_attributes[i].id!=194 || rawvalue<200) printf ("%llu\n", rawvalue); else - printf("First: %u Second: %u Third: %u\n", + printf("%u (Lifetime Low/Max %u/%u)\n", data.vendor_attributes[i].raw[0], data.vendor_attributes[i].raw[2], data.vendor_attributes[i].raw[4]);