]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(print_nth_dir): Remove first (and always-true) part of conjunct in assertion.
authorJim Meyering <jim@meyering.net>
Sun, 26 Apr 1998 05:14:50 +0000 (05:14 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 26 Apr 1998 05:14:50 +0000 (05:14 +0000)
src/remove.c

index 1bb3b5d8a4f2c144499d6e7ca162b7c988d218e1..f91ac55d41e1b6138414294887da40248be12e0c 100644 (file)
@@ -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++)
     {