svn commit: r233062 - stable/9/lib/libc/string

Konstantin Belousov kib at FreeBSD.org
Sat Mar 17 01:27:09 UTC 2012


Author: kib
Date: Sat Mar 17 01:27:09 2012
New Revision: 233062
URL: http://svn.freebsd.org/changeset/base/233062

Log:
  MFC r232973:
  Fix indentation.

Modified:
  stable/9/lib/libc/string/strerror.c
Directory Properties:
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/string/strerror.c
==============================================================================
--- stable/9/lib/libc/string/strerror.c	Sat Mar 17 01:23:49 2012	(r233061)
+++ stable/9/lib/libc/string/strerror.c	Sat Mar 17 01:27:09 2012	(r233062)
@@ -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-stable-9 mailing list