makedef.pl: Properly define a hash element

I had been so used to working lately with C preprocessor directives that
I used the same paradigm in Perl  without noticing.  If 'warnings' had
been on, it would have caught this (the previous commit now turns them
on).
This commit is contained in:
Karl Williamson 2022-12-08 06:50:19 -07:00 committed by Yves Orton
parent c5ceea5ab0
commit 84fa78b483

View File

@ -195,7 +195,7 @@ if ($define{MULTIPLICITY} && ( $define{USE_POSIX_2008_LOCALE}
|| ( $define{WIN32}
&& $define{USE_THREAD_SAFE_LOCALE})))
{
$define{USE_PERL_SWITCH_LOCALE_CONTEXT}
$define{USE_PERL_SWITCH_LOCALE_CONTEXT} = 1;
}
# perl.h logic duplication ends