From d98bf1f88816c83b69d2d6ae8904ac11bbf30692 Mon Sep 17 00:00:00 2001 From: Marian Ohligs Date: Wed, 10 Aug 2011 21:33:00 +0200 Subject: [PATCH] typo --- drivers/netchar/netchar.c | 2 +- kernel/syscall.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/netchar/netchar.c b/drivers/netchar/netchar.c index 9299ce59..3a0b2aac 100755 --- a/drivers/netchar/netchar.c +++ b/drivers/netchar/netchar.c @@ -42,7 +42,7 @@ static ssize_t netchar_read(fildes_t* file, uint8_t* buffer, size_t size) { - kprintf("\n%p with lenght %i and socket %i", buffer, size, file->offset); + kprintf("\nlwip_read: %p with lenght %i and Socket %i", buffer, size, file->offset); int ret; #if defined(CONFIG_LWIP) && LWIP_SOCKET diff --git a/kernel/syscall.c b/kernel/syscall.c index 57ca69d9..611faa07 100644 --- a/kernel/syscall.c +++ b/kernel/syscall.c @@ -306,7 +306,7 @@ int syscall_handler(uint32_t sys_nr, ...) ret = -ENOTSOCK; break; } - kprintf("%p with lenght %i and soket %i", name, namelen, per_core(current_task)->fildes_table[fd].offset); + kprintf("lwip_connect: %p with lenght %i and Socket %i", name, namelen, per_core(current_task)->fildes_table[fd].offset); ret = lwip_connect(per_core(current_task)->fildes_table[fd].offset, name, namelen);