Fix indent.

Submitted by:	Yuri Pankov <yuripv@gmx.com>
MFC after:	3 days
This commit is contained in:
kib 2017-08-12 14:58:09 +00:00
parent 2506c0989c
commit 83091102a8

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 {