This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6cfa66
)
Fix signed/unsigned mismatch in vms/vms.c.
author
Craig A. Berry
<craigberry@mac.com>
Fri, 1 Mar 2013 21:06:47 +0000
(15:06 -0600)
committer
Craig A. Berry
<craigberry@mac.com>
Fri, 1 Mar 2013 21:06:47 +0000
(15:06 -0600)
vms/vms.c
patch
|
blob
|
blame
|
history
diff --git
a/vms/vms.c
b/vms/vms.c
index
95c6309
..
82b5d16
100644
(file)
--- a/
vms/vms.c
+++ b/
vms/vms.c
@@
-1817,7
+1817,8
@@
mp_do_kill_file(pTHX_ const char *name, int dirflag)
char *vmsname;
char *rslt;
unsigned long int jpicode = JPI$_UIC, type = ACL$C_FILE;
- unsigned long int cxt = 0, aclsts, fndsts, rmsts = -1;
+ unsigned long int cxt = 0, aclsts, fndsts;
+ int rmsts = -1;
struct dsc$descriptor_s fildsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
struct myacedef {
unsigned char myace$b_length;