style(9).

MFC after:	2 weeks
This commit is contained in:
Xin LI 2016-11-28 07:21:09 +00:00
parent 305de00ec4
commit 4dceaf94fa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309239

View File

@ -190,7 +190,7 @@ ksetenv(const char *env, char *val)
{
int ret;
ret = kenv(KENV_SET, env, val, strlen(val)+1);
ret = kenv(KENV_SET, env, val, strlen(val) + 1);
if (ret == 0)
printf("%s=\"%s\"\n", env, val);
return (ret);
@ -200,7 +200,7 @@ static int
kunsetenv(const char *env)
{
int ret;
ret = kenv(KENV_UNSET, env, NULL, 0);
return (ret);
}