Change 16168 by ams@lustre on 2002/04/25 20:31:19
Subject: Re: POSIX::WEXITSTATUS broken again
From: Andy Dougherty <[EMAIL PROTECTED]>
Date: Thu, 25 Apr 2002 17:01:08 -0400 (EDT)
Message-Id:
<[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/ext/POSIX/POSIX.xs#102 edit
Differences ...
==== //depot/perl/ext/POSIX/POSIX.xs#102 (text) ====
Index: perl/ext/POSIX/POSIX.xs
--- perl/ext/POSIX/POSIX.xs.~1~ Thu Apr 25 14:45:05 2002
+++ perl/ext/POSIX/POSIX.xs Thu Apr 25 14:45:05 2002
@@ -517,7 +517,7 @@
if (memEQ(name, "WEXITSTATUS", 11)) {
/* ^ */
#ifdef WEXITSTATUS
- *arg_result = WEXITSTATUS(WMUNGE(*arg_result));
+ *arg_result = WEXITSTATUS(WMUNGE((int) *arg_result));
return PERL_constant_ISIV;
#else
return PERL_constant_NOTDEF;
End of Patch.