summaryrefslogtreecommitdiffstats
path: root/collectors/cgroups.plugin/tests/test_doubles.c
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/cgroups.plugin/tests/test_doubles.c')
-rw-r--r--collectors/cgroups.plugin/tests/test_doubles.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/collectors/cgroups.plugin/tests/test_doubles.c b/collectors/cgroups.plugin/tests/test_doubles.c
index 498f649f5d..3f2df44eaa 100644
--- a/collectors/cgroups.plugin/tests/test_doubles.c
+++ b/collectors/cgroups.plugin/tests/test_doubles.c
@@ -47,7 +47,7 @@ void mountinfo_free_all(struct mountinfo *mi)
RRDSET *rrdset_create_custom(
RRDHOST *host, const char *type, const char *id, const char *name, const char *family, const char *context,
const char *title, const char *units, const char *plugin, const char *module, long priority, int update_every,
- RRDSET_TYPE chart_type, RRD_MEMORY_MODE memory_mode, long history_entries)
+ RRDSET_TYPE chart_type, STORAGE_ENGINE_ID storage_engine_id, long history_entries)
{
UNUSED(host);
UNUSED(type);
@@ -62,7 +62,7 @@ RRDSET *rrdset_create_custom(
UNUSED(priority);
UNUSED(update_every);
UNUSED(chart_type);
- UNUSED(memory_mode);
+ UNUSED(storage_engine_id);
UNUSED(history_entries);
return NULL;
@@ -70,7 +70,7 @@ RRDSET *rrdset_create_custom(
RRDDIM *rrddim_add_custom(
RRDSET *st, const char *id, const char *name, collected_number multiplier, collected_number divisor,
- RRD_ALGORITHM algorithm, RRD_MEMORY_MODE memory_mode)
+ RRD_ALGORITHM algorithm, STORAGE_ENGINE_ID storage_engine_id)
{
UNUSED(st);
UNUSED(id);
@@ -78,7 +78,7 @@ RRDDIM *rrddim_add_custom(
UNUSED(multiplier);
UNUSED(divisor);
UNUSED(algorithm);
- UNUSED(memory_mode);
+ UNUSED(storage_engine_id);
return NULL;
}