diff options
| author | Collin Funk <collin.funk1@gmail.com> | 2025-10-01 23:44:18 -0700 |
|---|---|---|
| committer | Collin Funk <collin.funk1@gmail.com> | 2025-10-01 23:44:18 -0700 |
| commit | 7d55fd0aa3f171163a7bd6e7fc774e6acdafc52a (patch) | |
| tree | c0924a266698569ae55515414e78605425615a1e | |
| parent | fold: move multi-byte character reading to a module (diff) | |
| download | coreutils-7d55fd0aa3f171163a7bd6e7fc774e6acdafc52a.tar.gz coreutils-7d55fd0aa3f171163a7bd6e7fc774e6acdafc52a.zip | |
maint: prefer unreachable () to NOTREACHED comment
* src/tsort.c (search_item): Use unreachable () instead of NOTREACHED.
| -rw-r--r-- | src/tsort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tsort.c b/src/tsort.c index 7aff3e29a..6e39c0d13 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. */ |
