diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2014-12-30 00:17:38 +0100 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2014-12-30 00:17:38 +0100 |
| commit | 09f7bb82cacc8c63a2b9324e9491d2d06ed92fbd (patch) | |
| tree | 85e7556a78895cecf793cda56ccaaa992649f2cd | |
| parent | da5a36d6d298de44da687797f7547ab17b58d043 (diff) | |
| download | rockbox-09f7bb82cacc8c63a2b9324e9491d2d06ed92fbd.zip rockbox-09f7bb82cacc8c63a2b9324e9491d2d06ed92fbd.tar.gz rockbox-09f7bb82cacc8c63a2b9324e9491d2d06ed92fbd.tar.bz2 rockbox-09f7bb82cacc8c63a2b9324e9491d2d06ed92fbd.tar.xz | |
Add missing newline in debug output
Change-Id: Ifd67dbcc80db328391464ec93316c48f914bc590
| -rw-r--r-- | firmware/buflib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/buflib.c b/firmware/buflib.c index b6e5551..9ee721a 100644 --- a/firmware/buflib.c +++ b/firmware/buflib.c @@ -107,7 +107,7 @@ void buflib_init(struct buflib_context *ctx, void *buf, size_t size) { union buflib_data *bd_buf = buf; - BDEBUGF("buflib initialized with %lu.%02lu kiB", + BDEBUGF("buflib initialized with %lu.%02lu kiB\n", (unsigned long)size / 1024, ((unsigned long)size%1000)/10); /* Align on sizeof(buflib_data), to prevent unaligned access */ |