From 2b2d6ad0541544074fd54c86af6de2e2947e62ce Mon Sep 17 00:00:00 2001 From: David Härdeman Date: Sun, 21 Jun 2020 23:42:05 +0200 Subject: Move mcast task to a per-server task to get refcounting right --- main.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.h') diff --git a/main.h b/main.h index 9759ecf..5dff164 100644 --- a/main.h +++ b/main.h @@ -88,12 +88,12 @@ void __die(const char *fmt, ...) __attribute__((format(printf, 1, 2))); #define assert_task_alive_or(lvl, t, cmd) \ do { \ if (!(t)) { \ - error("invalid task\n"); \ + error("invalid task"); \ cmd; \ } \ \ if ((t)->dead) { \ - debug((lvl), "task dead\n"); \ + debug((lvl), "task dead"); \ cmd; \ } \ } while(0) -- cgit v1.2.3