typo
This commit is contained in:
parent
eebcf3fee1
commit
d98bf1f888
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue