summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-03-04 07:37:33 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2015-03-04 08:01:39 -0500
commit661d43c45c6cc0d2dfbe99378a9c3fff68b6b571 (patch)
treecdf9ce9dd1f2500c096364b4a997e27852791498 /util.c
parent03a97c81c355d48c40afa26a6647de481b64ac43 (diff)
downloadperl-661d43c45c6cc0d2dfbe99378a9c3fff68b6b571.tar.gz
Consistently use NOT_REACHED; /* NOTREACHED */
Both needed: the macro is for compilers, the comment for static checkers. (This doesn't address whether each spot is correct and necessary.)
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 9ffdbde0fb..11ed10bbfd 100644
--- a/util.c
+++ b/util.c
@@ -5693,7 +5693,7 @@ Perl_my_dirfd(DIR * dir) {
return dir->dd_fd;
#else
Perl_croak_nocontext(PL_no_func, "dirfd");
- NOT_REACHED; /* NOT REACHED */
+ NOT_REACHED; /* NOTREACHED */
return 0;
#endif
}