summaryrefslogtreecommitdiffstats
path: root/streaming
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2023-04-18 14:14:50 +0300
committerGitHub <noreply@github.com>2023-04-18 14:14:50 +0300
commitfec3e8f287f20e64b27ed65c43201fc7c8fbe90d (patch)
tree1420eac50e237266bde4ee74494b9ee7c6d4cb7b /streaming
parent19ae01efcc84bb1870b928a646a071b22f853b0b (diff)
Fix warnings and error when compiling with --disable-dbengine (#14919)
Diffstat (limited to 'streaming')
-rw-r--r--streaming/replication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/replication.c b/streaming/replication.c
index 63a0056abd..a50913a1a4 100644
--- a/streaming/replication.c
+++ b/streaming/replication.c
@@ -292,7 +292,7 @@ static void replication_query_align_to_optimal_before(struct replication_query *
struct replication_dimension *d = &q->data[i];
if(unlikely(!d->enabled)) continue;
- time_t new_before = rrdeng_load_align_to_optimal_before(&d->handle);
+ time_t new_before = storage_engine_align_to_optimal_before(&d->handle);
if (!expanded_before || new_before < expanded_before)
expanded_before = new_before;
}