From 466e63a453da9132e84ec9777de3eae4e840a15c Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Fri, 3 Dec 2021 07:37:32 +0100 Subject: analyze: fix build with -Db_ndebug=true --- src/analyze/analyze.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/analyze') diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index a641be4179..d5057bbe85 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -1959,7 +1959,7 @@ static int dump_filesystems(int argc, char *argv[], void *userdata) { const statfs_f_type_t *magic; bool is_primary = false; - assert(fs_type_from_string(*filesystem, &magic) >= 0); + assert_se(fs_type_from_string(*filesystem, &magic) >= 0); for (size_t i = 0; magic[i] != 0; i++) { const char *primary; -- cgit v1.2.1