summaryrefslogtreecommitdiff
path: root/src/remove.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-04-26 05:14:50 +0000
committerJim Meyering <jim@meyering.net>1998-04-26 05:14:50 +0000
commit7254d243f2413cba81959871793ab2def370f747 (patch)
treedd074a870a05eb0b258df7166c9ba7e8ecd8485b /src/remove.c
parent91da5cedc788c3a30140276e894a340b5ff51bcf (diff)
downloadcoreutils-7254d243f2413cba81959871793ab2def370f747.tar.xz
(print_nth_dir): Remove first (and always-true) part of conjunct in assertion.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c2
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++)
{