X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsmart.c;h=3188d1c85823987547413e7c5f6b4af3dbeae395;hb=01d23e3f5daf016d03f82d92a76be2fe3decdca4;hp=5bb6af438ddaab0e90d17a7e965ec6cdc6964ea0;hpb=a2ddc387687433291c36e7bc8a2f3a5ea88fd0a9;p=collectd.git diff --git a/src/smart.c b/src/smart.c index 5bb6af43..3188d1c8 100644 --- a/src/smart.c +++ b/src/smart.c @@ -74,14 +74,10 @@ static int smart_config(const char *key, const char *value) { static void smart_submit(const char *dev, const char *type, const char *type_inst, double value) { - value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = value; - - vl.values = values; + vl.values = &(value_t){.gauge = value}; vl.values_len = 1; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); sstrncpy(vl.plugin, "smart", sizeof(vl.plugin)); sstrncpy(vl.plugin_instance, dev, sizeof(vl.plugin_instance)); sstrncpy(vl.type, type, sizeof(vl.type)); @@ -93,19 +89,20 @@ static void smart_submit(const char *dev, const char *type, static void handle_attribute(SkDisk *d, const SkSmartAttributeParsedData *a, void *userdata) { char const *name = userdata; - value_t values[4]; - value_list_t vl = VALUE_LIST_INIT; if (!a->current_value_valid || !a->worst_value_valid) return; - values[0].gauge = a->current_value; - values[1].gauge = a->worst_value; - values[2].gauge = a->threshold_valid ? a->threshold : 0; - values[3].gauge = a->pretty_value; + + value_list_t vl = VALUE_LIST_INIT; + value_t values[] = { + {.gauge = a->current_value}, + {.gauge = a->worst_value}, + {.gauge = a->threshold_valid ? a->threshold : 0}, + {.gauge = a->pretty_value}, + }; vl.values = values; - vl.values_len = 4; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); + vl.values_len = STATIC_ARRAY_SIZE(values); sstrncpy(vl.plugin, "smart", sizeof(vl.plugin)); sstrncpy(vl.plugin_instance, name, sizeof(vl.plugin_instance)); sstrncpy(vl.type, "smart_attribute", sizeof(vl.type));