From 3d3c271c20f795c78867e2c0b9c771695a6ad0ef Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 10 Nov 2019 23:14:30 +0100 Subject: [PATCH] fix --- src/include/gnunet_network_lib.h | 2 +- src/include/gnunet_os_lib.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/gnunet_network_lib.h b/src/include/gnunet_network_lib.h index 15d4a8ada..47a5b853f 100644 --- a/src/include/gnunet_network_lib.h +++ b/src/include/gnunet_network_lib.h @@ -125,7 +125,7 @@ GNUNET_NETWORK_socket_accept (const struct GNUNET_NETWORK_Handle *desc, * @return NULL on error (including not supported on target platform) */ struct GNUNET_NETWORK_Handle * -GNUNET_NETWORK_socket_box_native (SOCKTYPE fd); +GNUNET_NETWORK_socket_box_native (int fd); /** diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h index 2eada2783..50e9a4c92 100644 --- a/src/include/gnunet_os_lib.h +++ b/src/include/gnunet_os_lib.h @@ -522,7 +522,7 @@ GNUNET_OS_start_process_va (int pipe_control, struct GNUNET_OS_Process * GNUNET_OS_start_process_v (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, - const SOCKTYPE *lsocks, + const int *lsocks, const char *filename, char *const argv[]); @@ -548,7 +548,7 @@ GNUNET_OS_start_process_v (int pipe_control, struct GNUNET_OS_Process * GNUNET_OS_start_process_s (int pipe_control, unsigned int std_inheritance, - const SOCKTYPE *lsocks, + const int *lsocks, const char *filename, ...); -- 2.25.1