X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fzfs_arc.c;h=5f14e90981adda089fb2b94cd85b5094a4e451b2;hb=535d74438fc722d0ac1720103a289feb77ceb3ed;hp=43e5b03ebb8a1fd3e0ce3e9471b5afc1fbb2b9a9;hpb=87a3da3a1cc2ad366bf3d1983718db485ad527b3;p=collectd.git diff --git a/src/zfs_arc.c b/src/zfs_arc.c index 43e5b03e..5f14e909 100644 --- a/src/zfs_arc.c +++ b/src/zfs_arc.c @@ -29,7 +29,7 @@ static kstat_t *ksp; extern kstat_ctl_t *kc; -static void za_submit (const char* type, const char* type_instance, value_t values[], int values_len) +static void za_submit (const char* type, const char* type_instance, value_t* values, int values_len) { value_list_t vl = VALUE_LIST_INIT; @@ -39,7 +39,7 @@ static void za_submit (const char* type, const char* type_instance, value_t valu sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "zfs_arc", sizeof (vl.plugin)); sstrncpy (vl.type, type, sizeof (vl.type)); - sstrncpy (vl.type_instance, type_instance, sizeof (vl.type)); + sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance)); plugin_dispatch_values (&vl); }