svn commit: r322426 - head/lib/libc/string
Konstantin Belousov
kib at FreeBSD.org
Sat Aug 12 14:58:10 UTC 2017
Author: kib
Date: Sat Aug 12 14:58:09 2017
New Revision: 322426
URL: https://svnweb.freebsd.org/changeset/base/322426
Log:
Fix indent.
Submitted by: Yuri Pankov <yuripv at gmx.com>
MFC after: 3 days
Modified:
head/lib/libc/string/memset_s.c
Modified: head/lib/libc/string/memset_s.c
==============================================================================
--- head/lib/libc/string/memset_s.c Sat Aug 12 14:02:19 2017 (r322425)
+++ head/lib/libc/string/memset_s.c Sat Aug 12 14:58:09 2017 (r322426)
@@ -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 {
More information about the svn-src-all
mailing list