Fix indentation.

MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2012-03-14 15:30:59 +00:00
parent 5cd6937330
commit a9e7383c18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232973

View File

@ -121,6 +121,6 @@ strerror(int num)
static char ebuf[NL_TEXTMAX];
if (strerror_r(num, ebuf, sizeof(ebuf)) != 0)
errno = EINVAL;
errno = EINVAL;
return (ebuf);
}