Skip to content

Commit b4bc910

Browse files
committed
embed.fnc Fix function return type
1 parent a6a6eee commit b4bc910

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

embed.fnc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3730,6 +3730,6 @@ XEop |STRLEN*|dup_warnings |NULLOK STRLEN* warnings
37303730
Amd |void |CopFILEGV_set |NN COP * c|NN GV * gv
37313731
#endif
37323732

3733-
Amd|char *const|phase_name|enum perl_phase
3733+
Amd|const char *const|phase_name|enum perl_phase
37343734

37353735
: ex: set ts=8 sts=4 sw=4 noet:

proto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2815,7 +2815,7 @@ PERL_CALLCONV int perl_run(PerlInterpreter *my_perl);
28152815
assert(my_perl)
28162816
PERL_CALLCONV Signal_t Perl_perly_sighandler(int sig, Siginfo_t *info, void *uap, bool safe);
28172817
#define PERL_ARGS_ASSERT_PERLY_SIGHANDLER
2818-
/* PERL_CALLCONV char *const phase_name(pTHX_ enum perl_phase); */
2818+
/* PERL_CALLCONV const char *const phase_name(pTHX_ enum perl_phase); */
28192819
#define PERL_ARGS_ASSERT_PHASE_NAME
28202820
PERL_CALLCONV void Perl_pmop_dump(pTHX_ PMOP* pm);
28212821
#define PERL_ARGS_ASSERT_PMOP_DUMP

0 commit comments

Comments
 (0)