summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2017-08-15 09:40:57 +0000
committerkib <kib@FreeBSD.org>2017-08-15 09:40:57 +0000
commit3fa77f9038ed35c5ab08407553d5ffd07ccd6a5f (patch)
treef817a47dea7d1454276a7f05b52a631a0da5a137 /lib/libc
parentf4970d9e6c3bc0472b12a0210f52d73ed29d20de (diff)
downloadFreeBSD-src-3fa77f9038ed35c5ab08407553d5ffd07ccd6a5f.zip
FreeBSD-src-3fa77f9038ed35c5ab08407553d5ffd07ccd6a5f.tar.gz
MFC r322426:
Fix indent.
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/string/memset_s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/memset_s.c b/lib/libc/string/memset_s.c
index 9bb8e1c..9605ff3 100644
--- a/lib/libc/string/memset_s.c
+++ b/lib/libc/string/memset_s.c
@@ -49,7 +49,7 @@ memset_s(void *s, rsize_t smax, int c, rsize_t n)
__throw_constraint_handler_s("memset_s : s is NULL", ret);
} else if (smax > RSIZE_MAX) {
__throw_constraint_handler_s("memset_s : smax > RSIZE_MAX",
- ret);
+ ret);
} else if (n > RSIZE_MAX) {
__throw_constraint_handler_s("memset_s : n > RSIZE_MAX", ret);
} else {
OpenPOWER on IntegriCloud