diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-03 09:34:23 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-03 09:34:23 +0000 |
commit | 58c0efa57789d77088d564834046e633a5c42edc (patch) | |
tree | 8ad8fa3e14072793d267b4fc84308e8d2d9f63cc /pp_sys.c | |
parent | 7dfde25db661bada3e1f19c61513f0bac481ca05 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |