Fix indent.

Submitted by:	Yuri Pankov <yuripv@gmx.com>
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2017-08-12 14:58:09 +00:00
parent 5d973bad2a
commit 6fe9e5b821
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=322426

View File

@ -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 {