Craig A. Berry wrote:
At 8:42 PM +0100 3/4/06, Abe Timmerman wrote:
fp = Perl_vms_start_glob(tmpglob, io);
.............................^
%CC-W-PTRMISMATCH, In this statement, the referenced type of the pointer value
"tmpglob" is "struct sv", which is not compatible with "struct interpreter".
at line number 2326 in file USER5:[abeltje.PERL-CURRENT]DOIO.C;1
Looks like #27239 broke this. I think we need an aTHX_ in that argument list.
Yes, I missed that and did not do a threaded build since then. I did
put the argument in the prototype though.
I just started a threaded build and test of [EMAIL PROTECTED] with this change.
-John
[EMAIL PROTECTED]
Personal Opinion Only.
--- /rsync_root/perl/doio.c Mon Feb 27 06:06:55 2006
+++ ./doio.c Sat Mar 4 18:11:15 2006
@@ -2323,7 +2323,7 @@
(pTHX_ SV *tmpglob,
IO *io);
- fp = Perl_vms_start_glob(tmpglob, io);
+ fp = Perl_vms_start_glob(aTHX_ tmpglob, io);
#else /* !VMS */
#ifdef MACOS_TRADITIONAL