summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-07-19 21:53:30 +0200
committerLennart Poettering <lennart@poettering.net>2008-07-19 21:53:30 +0200
commit12df8ffea8154ee3527f87a18948dd512dbe5b50 (patch)
tree8d40a5eccb4e00720505ac8f385e1124102db3ef
parent4f214cbd6ef1abe9fd13b481a876422d9c7a45aa (diff)
strinpoolize even more tables
-rw-r--r--atasmart.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/atasmart.c b/atasmart.c
index 0afc295..0387e5a 100644
--- a/atasmart.c
+++ b/atasmart.c
@@ -814,6 +814,7 @@ static const SkSmartAttributeInfo *lookup_attribute(SkDisk *d, uint8_t id) {
case 9: {
+ /* %STRINGPOOLSTART% */
static const SkSmartAttributeInfo maxtor = {
"power-on-minutes", SK_SMART_ATTRIBUTE_UNIT_MSECONDS
};
@@ -823,6 +824,7 @@ static const SkSmartAttributeInfo *lookup_attribute(SkDisk *d, uint8_t id) {
static const SkSmartAttributeInfo others = {
"power-on-hours", SK_SMART_ATTRIBUTE_UNIT_MSECONDS
};
+ /* %STRINGPOOLSTOP% */
if (strstr(ipd->model, "Maxtor") || strstr(ipd->model, "MAXTOR"))
return &maxtor;
@@ -1025,7 +1027,6 @@ static char* print_name(char *s, size_t len, uint8_t id, const char *k) {
s[len-1] = 0;
return s;
-
}
static char *print_value(char *s, size_t len, const SkSmartAttributeParsedData *a) {