secure_getenv: Add () around return values

Style only change, no functional change intended.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2023-03-14 09:25:04 -06:00
parent 6093120776
commit 72f501d07a

View File

@ -455,8 +455,8 @@ char *
secure_getenv(const char *name)
{
if (issetugid())
return NULL;
return getenv(name);
return (NULL);
return (getenv(name));
}
/*