diff options
author | Peter Stephenson <p.stephenson@samsung.com> | 2024-03-21 09:25:07 +0000 |
---|---|---|
committer | Peter Stephenson <p.stephenson@samsung.com> | 2024-03-21 09:25:07 +0000 |
commit | 017738cd60743b21832e5ee66b849b5adea1a28d (patch) | |
tree | 8c216dd0fac8545b07639e13ab24e2e17985301e /Src | |
parent | 7139d3b286bba5874548eb6faca25cf9bb90f7be (diff) | |
download | zsh-017738cd60743b21832e5ee66b849b5adea1a28d.tar.gz zsh-017738cd60743b21832e5ee66b849b5adea1a28d.tar.xz zsh-017738cd60743b21832e5ee66b849b5adea1a28d.zip |
52780: unneccessary returns in hlgroup
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Modules/hlgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
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[] = { |