From 9b374baa07844a2603c857244126546fa19da295 Mon Sep 17 00:00:00 2001 From: Jens Alfke Date: Thu, 5 Sep 2024 15:50:59 -0700 Subject: [PATCH] GCC fix --- REST/RESTListener+Replicate.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/REST/RESTListener+Replicate.cc b/REST/RESTListener+Replicate.cc index f1d05e101..c23dc93c4 100644 --- a/REST/RESTListener+Replicate.cc +++ b/REST/RESTListener+Replicate.cc @@ -299,8 +299,8 @@ namespace litecore::REST { Retained task = new ReplicationTask(this, source, target); C4ReplicatorParameters c4Params{ .optionsDictFleece = options, - .collectionCount = replCollections.size(), .collections = replCollections.data(), + .collectionCount = replCollections.size(), }; bool ok = task->start(localDB, localName, remoteAddress, remoteDbName, c4Params); if ( ok ) {