summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-03-03 09:34:23 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-03-03 09:34:23 +0000
commit58c0efa57789d77088d564834046e633a5c42edc (patch)
tree8ad8fa3e14072793d267b4fc84308e8d2d9f63cc /pp_sys.c
parent7dfde25db661bada3e1f19c61513f0bac481ca05 (diff)
downloadperl-58c0efa57789d77088d564834046e633a5c42edc.tar.gz
Compilation warnings fixes by Jerry D. Hedden
p4raw-id: //depot/perl@30447
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 44adca6c74..c35fb5b2b2 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3341,7 +3341,7 @@ PP(pp_fttext)
#if defined(DOSISH) || defined(USEMYBINMODE)
/* ignore trailing ^Z on short files */
- if (len && len < sizeof(tbuf) && tbuf[len-1] == 26)
+ if (len && len < (I32)sizeof(tbuf) && tbuf[len-1] == 26)
--len;
#endif