svn commit: r322533 - stable/11/lib/libc/string

Konstantin Belousov kib at FreeBSD.org
Tue Aug 15 09:40:58 UTC 2017


Author: kib
Date: Tue Aug 15 09:40:57 2017
New Revision: 322533
URL: https://svnweb.freebsd.org/changeset/base/322533

Log:
  MFC r322426:
  Fix indent.

Modified:
  stable/11/lib/libc/string/memset_s.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libc/string/memset_s.c
==============================================================================
--- stable/11/lib/libc/string/memset_s.c	Tue Aug 15 09:36:00 2017	(r322532)
+++ stable/11/lib/libc/string/memset_s.c	Tue Aug 15 09:40:57 2017	(r322533)
@@ -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