summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2010-12-15 22:41:47 -0800
committerJan Dubois <jand@activestate.com>2010-12-16 11:24:24 -0800
commit2dcac756b8b2c3b3d7d34174ba27b78fb1c7ba4a (patch)
tree60651f69172e41b6e83652b51230581f422c51c8 /pp_sys.c
parentec0363d9bb05a67dad10a50c9b76b5aba365199a (diff)
downloadperl-2dcac756b8b2c3b3d7d34174ba27b78fb1c7ba4a.tar.gz
Silence some data truncation compiler warnings
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index d27bde67f6..89e131c3ee 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3059,7 +3059,7 @@ PP(pp_ftrread)
conditional compiling below much clearer. */
I32 use_access = 0;
#endif
- int stat_mode = S_IRUSR;
+ Mode_t stat_mode = S_IRUSR;
bool effective = FALSE;
char opchar = '?';