From d3594a49cd2dca7a8369b8745f23a05be13f136c Mon Sep 17 00:00:00 2001 From: millert <> Date: Wed, 20 May 2015 22:50:07 +0000 Subject: [PATCH] Remove function argument name from posix_spawnattr_getsigmask() prototype to match other prototypes in the file. OK guenther@ deraadt@ --- src/include/spawn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/spawn.h b/src/include/spawn.h index eed2564d..374a18b0 100644 --- a/src/include/spawn.h +++ b/src/include/spawn.h @@ -1,4 +1,4 @@ -/* $OpenBSD: spawn.h,v 1.2 2012/12/05 23:19:57 deraadt Exp $ */ +/* $OpenBSD: spawn.h,v 1.3 2015/05/20 22:50:07 millert Exp $ */ /*- * Copyright (c) 2008 Ed Schouten * All rights reserved. @@ -87,7 +87,7 @@ int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *__restrict, int posix_spawnattr_getsigdefault(const posix_spawnattr_t *__restrict, sigset_t *__restrict); int posix_spawnattr_getsigmask(const posix_spawnattr_t *__restrict, - sigset_t *__restrict sigmask); + sigset_t *__restrict); int posix_spawnattr_setflags(posix_spawnattr_t *, short); int posix_spawnattr_setpgroup(posix_spawnattr_t *, pid_t);