diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2015-03-04 07:37:33 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-03-04 08:01:39 -0500 |
commit | 661d43c45c6cc0d2dfbe99378a9c3fff68b6b571 (patch) | |
tree | cdf9ce9dd1f2500c096364b4a997e27852791498 /universal.c | |
parent | 03a97c81c355d48c40afa26a6647de481b64ac43 (diff) | |
download | perl-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 'universal.c')
-rw-r--r-- | universal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/universal.c b/universal.c index 17ec475e26..4c98510e20 100644 --- a/universal.c +++ b/universal.c @@ -996,7 +996,7 @@ XS(XS_re_regexp_pattern) XSRETURN_NO; } } - NOT_REACHED; /* NOT-REACHED */ + NOT_REACHED; /* NOTREACHED */ } #include "vutil.h" |