Correct a misleading indent.

This dates to before the beginning of our repo and was found clang 10.

MFC after:	3 days
Sponsored by:	DARPA
This commit is contained in:
Brooks Davis 2020-01-21 16:31:08 +00:00
parent 2ee49fac82
commit b02706324a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356942

View File

@ -56,6 +56,5 @@ ualarm(useconds_t usecs, useconds_t reload)
if (setitimer(ITIMER_REAL, &new, &old) == 0)
return (old.it_value.tv_sec * USPS + old.it_value.tv_usec);
/* else */
return (-1);
return (-1);
}