diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2009-04-23 09:31:18 -0400 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2009-04-23 09:31:18 -0400 |
commit | 75cfa12d9f9af9ce285398a92bcf43ba90945fd9 (patch) | |
tree | ece19a75c500afcb20583a5ce6f63e5cc6cd7cde | |
parent | 83d29b3352ab9de77b3324ecaff3435dc02f504b (diff) |
edf common: fix debugging output
-rw-r--r-- | litmus/edf_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/edf_common.c b/litmus/edf_common.c index 9191c0a4d7..8149e0c5a2 100644 --- a/litmus/edf_common.c +++ b/litmus/edf_common.c | |||
@@ -29,7 +29,7 @@ int edf_higher_prio(struct task_struct* first, | |||
29 | /* There is no point in comparing a task to itself. */ | 29 | /* There is no point in comparing a task to itself. */ |
30 | if (first && first == second) { | 30 | if (first && first == second) { |
31 | TRACE_TASK(first, | 31 | TRACE_TASK(first, |
32 | "WARNING: pointless edf priority comparison."); | 32 | "WARNING: pointless edf priority comparison.\n"); |
33 | return 0; | 33 | return 0; |
34 | } | 34 | } |
35 | 35 | ||