From acf568ce4d90d78d63eed0fe74390fdd3348c1c8 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sat, 29 Aug 2009 15:25:23 +0200 Subject: [PATCH] zfs_arc plugin: Fix a small typo. --- src/zfs_arc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.11.0