From 41c9e064a6a976b881bd6d0ff6c0836a0039e0f2 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 3 Sep 2009 22:45:36 -0600 Subject: [PATCH] rm: avoid compiler warning * src/remove.c (rm_fts): Don't allow fall-through when assertions are disabled. --- src/remove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remove.c b/src/remove.c index d6d680316..87fb32bf9 100644 --- a/src/remove.c +++ b/src/remove.c @@ -575,7 +575,7 @@ The following directory is part of the cycle:\n %s\n"), ent->fts_info, quote (ent->fts_path), PACKAGE_BUGREPORT); - assert (0); + abort (); } }