From 017738cd60743b21832e5ee66b849b5adea1a28d Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 21 Mar 2024 09:25:07 +0000 Subject: 52780: unneccessary returns in hlgroup --- Src/Modules/hlgroup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/Modules/hlgroup.c') diff --git a/Src/Modules/hlgroup.c b/Src/Modules/hlgroup.c index 9b656c24e..082762623 100644 --- a/Src/Modules/hlgroup.c +++ b/Src/Modules/hlgroup.c @@ -142,7 +142,7 @@ getpmesc(UNUSED(HashTable ht), const char *name) static void scanpmesc(UNUSED(HashTable ht), ScanFunc func, int flags) { - return scangroup(func, flags, 0); + scangroup(func, flags, 0); } /**/ @@ -156,7 +156,7 @@ getpmsgr(UNUSED(HashTable ht), const char *name) static void scanpmsgr(UNUSED(HashTable ht), ScanFunc func, int flags) { - return scangroup(func, flags, 1); + scangroup(func, flags, 1); } static struct paramdef partab[] = { -- cgit v1.2.3