From: Frederic Marchal Date: Sun, 4 Oct 2015 14:45:32 +0000 (+0200) Subject: Add a comment to clarify some piece of code. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=131ca4c61481ec1619ac985eb563d981c398e68e;p=thirdparty%2Fsarg.git Add a comment to clarify some piece of code. --- diff --git a/btree_cache.c b/btree_cache.c index 5ce689d..5f5caeb 100644 --- a/btree_cache.c +++ b/btree_cache.c @@ -257,7 +257,7 @@ static void balance_node(struct bt *node) rotate_left(node); rotate_left(node); break; - default: + default://compiler pacifier: should never happen! debuga(__FILE__,__LINE__,_("Failed to balance the b-tree cache")); exit(EXIT_FAILURE); break;