print_queue no longer adds a newline

This commit is contained in:
Michael Moon 2011-02-20 10:58:32 +11:00
parent 65a1846955
commit da9bfc9f6f
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ void next_move() {
}
void print_queue() {
sersendf_P(PSTR("Q%d/%d%c\n"), mb_tail, mb_head, (queue_full()?'F':(queue_empty()?'E':' ')));
sersendf_P(PSTR("Q%d/%d%c"), mb_tail, mb_head, (queue_full()?'F':(queue_empty()?'E':' ')));
}
void queue_flush() {