summaryrefslogtreecommitdiff
path: root/src/portable/mentor
diff options
context:
space:
mode:
authorIngHK <[email protected]>2023-11-24 22:02:58 +0100
committerIngHK <[email protected]>2023-11-24 22:02:58 +0100
commit7e1fe2ff83e1089a1e75e4fdc03af4b0aa6048ea (patch)
tree8f5a3aa67b5067b83172c277e559cc1873c26900 /src/portable/mentor
parenta973887399e5bb33039ddddaf43136b63fe28776 (diff)
made log line end consistent \r\n
Diffstat (limited to 'src/portable/mentor')
-rw-r--r--src/portable/mentor/musb/dcd_musb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portable/mentor/musb/dcd_musb.c b/src/portable/mentor/musb/dcd_musb.c
index 3c0114e41..a817c5d6e 100644
--- a/src/portable/mentor/musb/dcd_musb.c
+++ b/src/portable/mentor/musb/dcd_musb.c
@@ -158,9 +158,9 @@ static inline unsigned free_block_size(free_block_t const *blk)
#if 0
static inline void print_block_list(free_block_t const *blk, unsigned num)
{
- TU_LOG1("*************\n");
+ TU_LOG1("*************\r\n");
for (unsigned i = 0; i < num; ++i) {
- TU_LOG1(" Blk%u %u %u\n", i, blk->beg, blk->end);
+ TU_LOG1(" Blk%u %u %u\r\n", i, blk->beg, blk->end);
++blk;
}
}