diff options
author | kib <kib@FreeBSD.org> | 2012-03-14 15:30:59 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2012-03-14 15:30:59 +0000 |
commit | 2d6797921217c9d1d60d7950f1c8f104eb18b7ae (patch) | |
tree | 8754ece6d36658287362a8231ebf7337ab53fc59 /lib/libc/string/strerror.c | |
parent | eccfeea8a5f95c5484d846fba96de60c97d00c2c (diff) | |
download | FreeBSD-src-2d6797921217c9d1d60d7950f1c8f104eb18b7ae.zip FreeBSD-src-2d6797921217c9d1d60d7950f1c8f104eb18b7ae.tar.gz |
Fix indentation.
MFC after: 3 days
Diffstat (limited to 'lib/libc/string/strerror.c')
-rw-r--r-- | lib/libc/string/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c index 57d253d..bfca871 100644 --- a/lib/libc/string/strerror.c +++ b/lib/libc/string/strerror.c @@ -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); } |