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);
 }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to