diff options
author | Jim Meyering <jim@meyering.net> | 1998-04-26 05:14:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-04-26 05:14:50 +0000 |
commit | 7254d243f2413cba81959871793ab2def370f747 (patch) | |
tree | dd074a870a05eb0b258df7166c9ba7e8ecd8485b /src | |
parent | 91da5cedc788c3a30140276e894a340b5ff51bcf (diff) | |
download | coreutils-7254d243f2413cba81959871793ab2def370f747.tar.xz |
(print_nth_dir): Remove first (and always-true) part of conjunct in assertion.
Diffstat (limited to 'src')
-rw-r--r-- | src/remove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c index 1bb3b5d8a..f91ac55d4 100644 --- a/src/remove.c +++ b/src/remove.c @@ -148,7 +148,7 @@ print_nth_dir (FILE *stream, unsigned int depth) unsigned int sum = 0; unsigned int i; - assert (0 <= depth && depth < current_depth ()); + assert (depth < current_depth ()); for (i = 0; i <= depth; i++) { |