diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2001-09-19 13:45:28 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-19 11:19:56 +0000 |
commit | a86deb9aacaac2099a8928c04c26b6d616aea181 (patch) | |
tree | a0cc7004126bcf59a3de61b318a2bf918a5f98f9 /ext | |
parent | 5da2326bb445e5b4dbc4d1d39aae8e094b0bd56e (diff) | |
download | perl-a86deb9aacaac2099a8928c04c26b6d616aea181.tar.gz |
Re: [PATCH] Smoke 12057 /pro/3gl/CPAN/perl-current
Message-Id: <20010919110037.19C7.H.M.BRAND@hccnet.nl>
Lvalue casts are not portable.
p4raw-id: //depot/perl@12082
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/threads/threads.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/threads/threads.xs b/ext/threads/threads.xs index d74a198c0c..09387ba493 100755 --- a/ext/threads/threads.xs +++ b/ext/threads/threads.xs @@ -297,7 +297,7 @@ BOOT: PL_perl_destruct_level = 2; threads = Perl_sharedsv_new(aTHX); SHAREDSvEDIT(threads); - ((HV*) SHAREDSvGET(threads)) = newHV(); + SHAREDSvGET(threads) = (SV *)newHV(); SHAREDSvRELEASE(threads); { |