From 7adcf74a575e34472f5ec009d89ee23e8fc8e30a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Thu, 19 Feb 2026 15:15:10 +0100 Subject: [PATCH] Fix deprecation warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin PoviĊĦer --- search/Search.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/Search.i b/search/Search.i index 8978d530..8afe1b72 100644 --- a/search/Search.i +++ b/search/Search.i @@ -231,7 +231,7 @@ endpoint_slack(const Pin *pin, { Sta *sta = Sta::sta(); sta->ensureLibLinked(); - if (sta->isGroupPathName(path_group_name, sta->cmdSdc())) { + if (sta->isPathGroupName(path_group_name, sta->cmdSdc())) { Slack slack = sta->endpointSlack(pin, std::string(path_group_name), min_max); return sta->units()->timeUnit()->staToUser(delayAsFloat(slack)); }