aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-11-10 23:14:30 +0100
committerChristian Grothoff <christian@grothoff.org>2019-11-10 23:14:30 +0100
commit3d3c271c20f795c78867e2c0b9c771695a6ad0ef (patch)
treeda527297f1b3b959395194b0192d18eb29a352e8 /src
parent7ff9290162ddcad90b27a266588dcd7ade2b414e (diff)
downloadgnunet-3d3c271c20f795c78867e2c0b9c771695a6ad0ef.tar.gz
gnunet-3d3c271c20f795c78867e2c0b9c771695a6ad0ef.zip
fix
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_network_lib.h2
-rw-r--r--src/include/gnunet_os_lib.h4
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,
125 * @return NULL on error (including not supported on target platform) 125 * @return NULL on error (including not supported on target platform)
126 */ 126 */
127struct GNUNET_NETWORK_Handle * 127struct GNUNET_NETWORK_Handle *
128GNUNET_NETWORK_socket_box_native (SOCKTYPE fd); 128GNUNET_NETWORK_socket_box_native (int fd);
129 129
130 130
131/** 131/**
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,
522struct GNUNET_OS_Process * 522struct GNUNET_OS_Process *
523GNUNET_OS_start_process_v (int pipe_control, 523GNUNET_OS_start_process_v (int pipe_control,
524 enum GNUNET_OS_InheritStdioFlags std_inheritance, 524 enum GNUNET_OS_InheritStdioFlags std_inheritance,
525 const SOCKTYPE *lsocks, 525 const int *lsocks,
526 const char *filename, 526 const char *filename,
527 char *const argv[]); 527 char *const argv[]);
528 528
@@ -548,7 +548,7 @@ GNUNET_OS_start_process_v (int pipe_control,
548struct GNUNET_OS_Process * 548struct GNUNET_OS_Process *
549GNUNET_OS_start_process_s (int pipe_control, 549GNUNET_OS_start_process_s (int pipe_control,
550 unsigned int std_inheritance, 550 unsigned int std_inheritance,
551 const SOCKTYPE *lsocks, 551 const int *lsocks,
552 const char *filename, ...); 552 const char *filename, ...);
553 553
554 554