mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
posix_spawn: style, use return ()
Reviewed by: kevans, ngie (previous version) Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D33143
This commit is contained in:
parent
adbaf1b443
commit
b239cc204a
1 changed files with 2 additions and 2 deletions
|
|
@ -353,7 +353,7 @@ posix_spawn(pid_t *pid, const char *path,
|
|||
const posix_spawnattr_t *sa,
|
||||
char * const argv[], char * const envp[])
|
||||
{
|
||||
return do_posix_spawn(pid, path, fa, sa, argv, envp, 0);
|
||||
return (do_posix_spawn(pid, path, fa, sa, argv, envp, 0));
|
||||
}
|
||||
|
||||
int
|
||||
|
|
@ -362,7 +362,7 @@ posix_spawnp(pid_t *pid, const char *path,
|
|||
const posix_spawnattr_t *sa,
|
||||
char * const argv[], char * const envp[])
|
||||
{
|
||||
return do_posix_spawn(pid, path, fa, sa, argv, envp, 1);
|
||||
return (do_posix_spawn(pid, path, fa, sa, argv, envp, 1));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue