user_data_t user_data;
if (ud == NULL) {
user_data = (user_data_t){
- .data = NULL, .free_func = NULL,
+ .data = NULL,
+ .free_func = NULL,
};
} else {
user_data = *ud;
assert(0 == strcmp(ds->type, vl->type));
#else
if (0 != strcmp(ds->type, vl->type))
- WARNING("plugin_dispatch_values: <%s/%s-%s> (ds->type = %s) != (vl->type = %s)",
- vl->host, vl->plugin, vl->plugin_instance,
- ds->type, vl->type);
+ WARNING(
+ "plugin_dispatch_values: <%s/%s-%s> (ds->type = %s) != (vl->type = %s)",
+ vl->host, vl->plugin, vl->plugin_instance, ds->type, vl->type);
#endif
#if COLLECT_DEBUG
ERROR("plugin_dispatch_values: <%s/%s-%s/%s-%s> ds->type = %s: "
"(ds->ds_num = %" PRIsz ") != "
"(vl->values_len = %" PRIsz ")",
- vl->host, vl->plugin, vl->plugin_instance,
- vl->type, vl->type_instance,
- ds->type, ds->ds_num, vl->values_len);
+ vl->host, vl->plugin, vl->plugin_instance, vl->type,
+ vl->type_instance, ds->type, ds->ds_num, vl->values_len);
return -1;
}
#endif