svn commit: r233066 - stable/8/lib/libc/string
Konstantin Belousov
kib at FreeBSD.org
Sat Mar 17 01:59:15 UTC 2012
Author: kib
Date: Sat Mar 17 01:59:15 2012
New Revision: 233066
URL: http://svn.freebsd.org/changeset/base/233066
Log:
MFC r232973:
Fix indentation.
Modified:
stable/8/lib/libc/string/strerror.c
Directory Properties:
stable/8/lib/libc/ (props changed)
Modified: stable/8/lib/libc/string/strerror.c
==============================================================================
--- stable/8/lib/libc/string/strerror.c Sat Mar 17 01:51:30 2012 (r233065)
+++ stable/8/lib/libc/string/strerror.c Sat Mar 17 01:59:15 2012 (r233066)
@@ -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);
}
More information about the svn-src-all
mailing list