summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-08-03 21:07:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-08-03 21:07:57 +0000
commita20bf0c3d4388ee237405eea459c5f4080c80cef (patch)
tree88a8676f080797ff8d6fe8e0bf367b40da674f79 /doio.c
parent92479810ad7bcca524d84878cb8fc5387a2d262c (diff)
downloadperl-a20bf0c3d4388ee237405eea459c5f4080c80cef.tar.gz
Retract #3912, much too many compilation warnings
under Digital UNIX. p4raw-id: //depot/cfgperl@3913
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/doio.c b/doio.c
index 0b7a46c0d5..f13d09f2b2 100644
--- a/doio.c
+++ b/doio.c
@@ -792,7 +792,7 @@ Perl_do_eof(pTHX_ GV *gv)
while (IoIFP(io)) {
if (PerlIO_has_cntptr(IoIFP(io))) { /* (the code works without this) */
- if (PerlIO_get_cnt(aTHX_ IoIFP(io)) > 0) /* cheat a little, since */
+ if (PerlIO_get_cnt(IoIFP(io)) > 0) /* cheat a little, since */
return FALSE; /* this is the most usual case */
}
@@ -802,8 +802,8 @@ Perl_do_eof(pTHX_ GV *gv)
return FALSE;
}
if (PerlIO_has_cntptr(IoIFP(io)) && PerlIO_canset_cnt(IoIFP(io))) {
- if (PerlIO_get_cnt(aTHX_ IoIFP(io)) < -1)
- PerlIO_set_cnt(aTHX_ IoIFP(io),-1);
+ if (PerlIO_get_cnt(IoIFP(io)) < -1)
+ PerlIO_set_cnt(IoIFP(io),-1);
}
if (PL_op->op_flags & OPf_SPECIAL) { /* not necessarily a real EOF yet? */
if (!nextargv(PL_argvgv)) /* get another fp handy */