From 0ba157d4345c2f73bb591e017371681613e540de Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Wed, 18 Dec 2024 16:32:21 -0600 Subject: [PATCH] Try using -> instead of . for the name of current_series --- cpp/lintian-ppa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/lintian-ppa.cpp b/cpp/lintian-ppa.cpp index 325d2af..8efea30 100644 --- a/cpp/lintian-ppa.cpp +++ b/cpp/lintian-ppa.cpp @@ -490,7 +490,7 @@ int main(int argc, char* argv[]) { } // Iterate over published sources - auto publishedSources = ppa.getPublishedSources("Published", current_series.name); + auto publishedSources = ppa.getPublishedSources("Published", current_series->name); for (const auto& source : publishedSources) { for (const auto& build : source.getBuilds()) { if (build.buildstate == "Successfully built") {