tests: net: lwm2m: Fix zsock_fcntl impl name
The syscall name has _impl postfix so adjusting the stub name. zephyr-sdk-0.16.5-1/x86_64-zephyr-elf/bin/../lib/gcc/ x86_64-zephyr-elf/12.2.0/../../../../x86_64-zephyr-elf/bin/ld.bfd: app/libapp.a(lwm2m_engine.c.obj): in function `zsock_fcntl_impl': .../syscalls/socket.h:363: undefined reference to `z_impl_zsock_fcntl_impl' Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This commit is contained in:
parent
c4216dd65c
commit
66bc15d89d
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ int z_impl_zsock_poll(struct zsock_pollfd *fds, int nfds, int poll_timeout)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int z_impl_zsock_fcntl(int sock, int cmd, int flags)
|
||||
int z_impl_zsock_fcntl_impl(int sock, int cmd, int flags)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue