voron

experimental ARM OS
git clone git://git.2f30.org/voron
Log | Files | Refs | README | LICENSE

commit fe9327441c4bbba462d522ab477d02d0d17c6ad9
parent f07655eb7eb9aceca862fb405c5c25ca43d714c6
Author: oblique <psyberbits@gmail.com>
Date:   Tue, 23 Jul 2013 16:30:41 +0300

Add a space in some printable strings

Diffstat:
Mkernel/pool.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/pool.c b/kernel/pool.c @@ -67,10 +67,10 @@ alloc_item(struct pool *pool, size_t n, item_id id) item = &pool->item[i]; if (item->id == id) { if (ndebug > 0) - kprintf("Found possible unused item:%d\n", item->id); + kprintf("Found possible unused item: %d\n", item->id); if (item->state == ITEM_UNUSED && item->siz >= n) { if (ndebug > 0) - kprintf("Found unused item:%d of size %zu bytes\n", + kprintf("Found unused item: %d of size %zu bytes\n", item->id, item->siz); item->state = ITEM_USED; spinlock_unlock(&pool->lock); @@ -80,7 +80,7 @@ alloc_item(struct pool *pool, size_t n, item_id id) } if (ndebug > 0) - kprintf("Allocating new item:%d of size %zu bytes\n", + kprintf("Allocating new item: %d of size %zu bytes\n", id, n); tmp = krealloc(pool->item, sizeof(struct item) * (pool->siz + 1));