From cc11473037907a6eb5ef9b8b692331d04bd1328e Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Tue, 19 Jun 2018 05:01:07 +0000 Subject: [PATCH] top(1): correct assertion --- usr.bin/top/top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index abaeca2962d0..5a8c311bebdd 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -1169,7 +1169,7 @@ restart: clear_message(); break; case CMD_NONE: - assert("reached switch without command"); + assert(false && "reached switch without command"); } } }