From: Collin Funk Date: Thu, 2 Oct 2025 06:44:18 +0000 (-0700) Subject: maint: prefer unreachable () to NOTREACHED comment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d55fd0aa3f171163a7bd6e7fc774e6acdafc52a;p=thirdparty%2Fcoreutils.git maint: prefer unreachable () to NOTREACHED comment * src/tsort.c (search_item): Use unreachable () instead of NOTREACHED. --- diff --git a/src/tsort.c b/src/tsort.c index 7aff3e29aa..6e39c0d13e 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -255,7 +255,7 @@ search_item (struct item *root, char const *str) p = q; } - /* NOTREACHED */ + unreachable (); } /* Record the fact that J precedes K. */