summaryrefslogtreecommitdiff
path: root/embed.fnc
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-04-30 11:48:46 -0600
committerKarl Williamson <khw@cpan.org>2018-06-25 07:33:26 -0600
commit808ea3ad2891b03a3f9c239b9b99d56b4765d765 (patch)
tree560b4520dce2090669af1f1a3e0272b90970294c /embed.fnc
parentd361a1e6288b3e67fba6cb9f5cdac3737a1e3795 (diff)
downloadperl-808ea3ad2891b03a3f9c239b9b99d56b4765d765.tar.gz
embed.fnc: Fix my_atof2() entry
This was using the incorrect formal parameter name. It did not generate an error because the function declares a variable with the incorrect name, so that this was actually asserting on the wrong thing.
Diffstat (limited to 'embed.fnc')
-rw-r--r--embed.fnc2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.fnc b/embed.fnc
index 454a380e4c..810bc9353d 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -2909,7 +2909,7 @@ Apd |char* |sv_pvn_force_flags|NN SV *const sv|NULLOK STRLEN *const lp|const I32
Apmb |void |sv_copypv |NN SV *const dsv|NN SV *const ssv
Apmd |void |sv_copypv_nomg |NN SV *const dsv|NN SV *const ssv
Apd |void |sv_copypv_flags |NN SV *const dsv|NN SV *const ssv|const I32 flags
-Ap |char* |my_atof2 |NN const char *s|NN NV* value
+Ap |char* |my_atof2 |NN const char *orig|NN NV* value
Apn |int |my_socketpair |int family|int type|int protocol|int fd[2]
Apn |int |my_dirfd |NULLOK DIR* dir
#ifdef PERL_ANY_COW