From 04499a70fbff3f6b798028473f5c9234a53eaa2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 27 Jul 2021 12:27:28 +0200 Subject: Drop the text argument from assert_not_reached() In general we almost never hit those asserts in production code, so users see them very rarely, if ever. But either way, we just need something that users can pass to the developers. We have quite a few of those asserts, and some have fairly nice messages, but many are like "WTF?" or "???" or "unexpected something". The error that is printed includes the file location, and function name. In almost all functions there's at most one assert, so the function name alone is enough to identify the failure for a developer. So we don't get much extra from the message, and we might just as well drop them. Dropping them makes our code a tiny bit smaller, and most importantly, improves development experience by making it easy to insert such an assert in the code without thinking how to phrase the argument. --- src/creds/creds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/creds') diff --git a/src/creds/creds.c b/src/creds/creds.c index c2a2eabbed..f880a79a82 100644 --- a/src/creds/creds.c +++ b/src/creds/creds.c @@ -232,7 +232,7 @@ static int transcode( return r; default: - assert_not_reached("Unexpected transcoding mode"); + assert_not_reached(); } } @@ -761,7 +761,7 @@ static int parse_argv(int argc, char *argv[]) { return -EINVAL; default: - assert_not_reached("Unhandled option"); + assert_not_reached(); } } -- cgit v1.2.1