X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Farm%2Fdo_start_process.c;h=139d0c42983c80908dbe662d02d1121d07601c76;hb=5b79d2a877b71d5e718328784fd69725efa1d38d;hp=7d691ce60a9af309e8df62793f09b441543d9d02;hpb=721e49caeea6ba5073f8bc5c6c08359295c02bb5;p=oweals%2Fgnunet.git diff --git a/src/arm/do_start_process.c b/src/arm/do_start_process.c index 7d691ce60..139d0c429 100644 --- a/src/arm/do_start_process.c +++ b/src/arm/do_start_process.c @@ -12,7 +12,7 @@ * @param ... more arguments, NULL terminated * @return PID of the started process, -1 on error */ -static GNUNET_OS_Process * +static struct GNUNET_OS_Process * do_start_process (const int *lsocks, const char *first_arg, ...) { @@ -24,7 +24,7 @@ do_start_process (const int *lsocks, char *pos; char *cp; const char *last; - GNUNET_OS_Process *proc; + struct GNUNET_OS_Process *proc; argv_size = 1; va_start (ap, first_arg);