summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-11-07 10:43:14 -0700
committerKarl Williamson <khw@cpan.org>2022-12-01 12:44:42 -0700
commit5351ec0e1c39a301c24dcd2d6b4f993e890efe16 (patch)
treef164b5446cbbc291059659362ff5990b02820663 /embed.h
parent4c39aaa2805d71d6543865ee06831b0b7ea4de88 (diff)
downloadperl-5351ec0e1c39a301c24dcd2d6b4f993e890efe16.tar.gz
locale.c: Rmv unnecessary parameter from static function
This dates from an earlier implementation
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index af217e424a..73b32a1c88 100644
--- a/embed.h
+++ b/embed.h
@@ -1611,7 +1611,7 @@
# if (defined(HAS_LOCALECONV) || defined(HAS_LOCALECONV_L)) && (defined(USE_LOCALE_MONETARY) || defined(USE_LOCALE_NUMERIC))
# if defined(PERL_IN_LOCALE_C)
# if defined(USE_LOCALE)
-#define my_localeconv(a,b) S_my_localeconv(aTHX_ a,b)
+#define my_localeconv(a) S_my_localeconv(aTHX_ a)
#define populate_localeconv(a,b,c,d) S_populate_localeconv(aTHX_ a,b,c,d)
# endif
# endif