diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-03 18:10:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-03 18:10:45 +0000 |
commit | 8dab44642a9d815deeb8bc2999f6bf1ee85a4992 (patch) | |
tree | 7f9b7f1f407359cbfd8779850fc3e9212b7a213a /embed.h | |
parent | 84b2b14beadff5ecd6b639a44c9ae7c2f1664528 (diff) | |
download | perl-8dab44642a9d815deeb8bc2999f6bf1ee85a4992.tar.gz |
Oops. I *thought* that I had checked that all changed files were open.
Clearly not. (Fixes change 27066)
p4raw-id: //depot/perl@27068
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3202,7 +3202,7 @@ #define nuke_stacks() S_nuke_stacks(aTHX) #define open_script(a,b,c) S_open_script(aTHX_ a,b,c) #define usage(a) S_usage(aTHX_ a) -#define validate_suid(a,b) S_validate_suid(aTHX_ a,b) +#define validate_suid(a,b,c) S_validate_suid(aTHX_ a,b,c) #endif # if defined(IAMSUID) #ifdef PERL_CORE @@ -4160,7 +4160,7 @@ #if !defined(PERL_CORE) # define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,PTR2IV(ptr)) -# define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,PTR2IV(ptr)) +# define sv_setptrref(rv,ptr) sv_setref_iv(rv,NULL,PTR2IV(ptr)) #endif #if !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) |