diff options
Diffstat (limited to 'perlio.c')
-rw-r--r-- | perlio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -416,7 +416,7 @@ FILE * PerlIO_findFILE(PerlIO *pio) { const int fd = PerlIO_fileno(pio); - FILE * const f = fdopen(fd, "r+"); + FILE * f = fdopen(fd, "r+"); PerlIO_flush(pio); if (!f && errno == EINVAL) f = fdopen(fd, "w"); |