From: Jim Meyering Date: Sun, 26 Apr 1998 05:14:50 +0000 (+0000) Subject: (print_nth_dir): Remove first (and always-true) part of conjunct in assertion. X-Git-Tag: TEXTUTILS-1_22f~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7254d243f2413cba81959871793ab2def370f747;p=thirdparty%2Fcoreutils.git (print_nth_dir): Remove first (and always-true) part of conjunct in assertion. --- diff --git a/src/remove.c b/src/remove.c index 1bb3b5d8a4..f91ac55d41 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++) {