aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-17 21:52:22 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-17 21:52:22 +0200
commit931232d1141891232e46f5d6fd1432663e730e7a (patch)
treec42a1ba84b66a7566b8719e163332ba02367e006 /src
parent913e08b728cbc8c85cad2751d6837a7c502eb355 (diff)
downloadgnunet-931232d1141891232e46f5d6fd1432663e730e7a.tar.gz
gnunet-931232d1141891232e46f5d6fd1432663e730e7a.zip
fix signature
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_os_lib.h4
-rw-r--r--src/util/os_priority.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index b583cc493..12aeec7f0 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2011 GNUnet e.V. 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2011, 2020 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -555,7 +555,7 @@ GNUNET_OS_start_process_v (int pipe_control,
555 */ 555 */
556struct GNUNET_OS_Process * 556struct GNUNET_OS_Process *
557GNUNET_OS_start_process_s (int pipe_control, 557GNUNET_OS_start_process_s (int pipe_control,
558 unsigned int std_inheritance, 558 enum GNUNET_OS_InheritStdioFlags std_inheritance,
559 const int *lsocks, 559 const int *lsocks,
560 const char *filename, ...); 560 const char *filename, ...);
561 561
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 5799d893b..7f3be2a80 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -760,7 +760,7 @@ GNUNET_OS_start_process_v (int pipe_control,
760 */ 760 */
761struct GNUNET_OS_Process * 761struct GNUNET_OS_Process *
762GNUNET_OS_start_process_s (int pipe_control, 762GNUNET_OS_start_process_s (int pipe_control,
763 unsigned int std_inheritance, 763 enum GNUNET_OS_InheritStdioFlags std_inheritance,
764 const int *lsocks, 764 const int *lsocks,
765 const char *filename, 765 const char *filename,
766 ...) 766 ...)