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 <yur...@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 {
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to