commit: 578b105cdecb4a9743062413cd2b08e2065cd9aa
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Fri Jan 9 08:03:13 2026 +0000
Commit: Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Fri Jan 9 08:03:13 2026 +0000
URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=578b105c
Add a missing semicolon in generate_locales()
Fixes: 5e86a968cf738a443d6c7d18bd1c7b22ad46ec18
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
locale-gen | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/locale-gen b/locale-gen
index f1f2e3f..8ae8a47 100644
--- a/locale-gen
+++ b/locale-gen
@@ -466,7 +466,7 @@ sub generate_locales ($workers, @locales) {
local @SIG{'INT', 'TERM'} = ($handler, $handler);
my $total = scalar @locales;
- $workers = min($workers, $total)
+ $workers = min($workers, $total);
printf "Compiling %d locale%s with %d worker%s ...\n",
$total, plural($total), $workers, plural($workers);