svn commit: r232973 - head/lib/libc/string

Konstantin Belousov kib at FreeBSD.org
Wed Mar 14 15:30:59 UTC 2012


Author: kib
Date: Wed Mar 14 15:30:59 2012
New Revision: 232973
URL: http://svn.freebsd.org/changeset/base/232973

Log:
  Fix indentation.
  
  MFC after:	3 days

Modified:
  head/lib/libc/string/strerror.c

Modified: head/lib/libc/string/strerror.c
==============================================================================
--- head/lib/libc/string/strerror.c	Wed Mar 14 14:40:22 2012	(r232972)
+++ head/lib/libc/string/strerror.c	Wed Mar 14 15:30:59 2012	(r232973)
@@ -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