]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
basic/log: use appropriate glyph in log_assert_failed_unreachable() 20368/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 3 Aug 2021 13:46:05 +0000 (15:46 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 3 Aug 2021 13:46:21 +0000 (15:46 +0200)
Per popular demand.

src/basic/log.c

index bbc12a1cfb99d21236a1f67d2687d5f5319e9ddd..7602536691a0d7fd6561521c5669d53191f01edd 100644 (file)
@@ -867,7 +867,7 @@ _noreturn_ void log_assert_failed_unreachable(
                 int line,
                 const char *func) {
         log_assert(LOG_CRIT, "Code should not be reached", file, line, func,
-                   "%s at %s:%u, function %s(). Aborting.");
+                   "%s at %s:%u, function %s(). Aborting. 💥");
         abort();
 }