diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2017-01-18 12:37:26 +0000 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2017-01-25 18:02:20 +0000 |
commit | 8298454cd9bef3c23473ec307d99840429f2df55 (patch) | |
tree | 6bc92e4ddac34acfd1b3732f2158a0cf87bbafe0 /doio.c | |
parent | 32207c637b216a1dfa7317d111af89f149743ff3 (diff) | |
download | perl-8298454cd9bef3c23473ec307d99840429f2df55.tar.gz |
Use cBOOL() instead of ? TRUE : FALSE
Except under cpan/ and dist/
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2113,7 +2113,7 @@ Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp) /* Atari stat() does pretty much the same thing. we set x_bit_set_in_stat * too so it will actually look into the files for magic numbers */ - return (mode & statbufp->st_mode) ? TRUE : FALSE; + return cBOOL(mode & statbufp->st_mode); #else /* ! DOSISH */ # ifdef __CYGWIN__ |