summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'main.h')
-rw-r--r--main.h4
1 files changed, 2 insertions, 2 deletions
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)