fw/layer1/fbsb: fix newline in a printf()-call

Found by clang:
warning: unknown escape sequence '\m'

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Steve Markgraf 2011-08-31 21:55:01 +02:00
parent 3087fd5030
commit ff82113350
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ static int l1s_fbdet_resp(__unused uint8_t p1, uint8_t attempt,
int fn_offset = l1s.current_time.fn - last_fb->attempt + ntdma;
int delay = fn_offset + 11 - l1s.current_time.fn - 1;
printf(" fn_offset=%d (fn=%u + attempt=%u + ntdma = %d)\m",
printf(" fn_offset=%d (fn=%u + attempt=%u + ntdma = %d)\n",
fn_offset, l1s.current_time.fn, last_fb->attempt, ntdma);
printf(" delay=%d (fn_offset=%d + 11 - fn=%u - 1\n", delay,
fn_offset, l1s.current_time.fn);