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:
Jukka Rissanen 2024-03-08 16:47:08 +02:00 committed by David Leach
commit 66bc15d89d

View file

@ -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;
}