svn commit: r353995 - stable/12/stand/libsa
Kyle Evans
kevans at FreeBSD.org
Thu Oct 24 03:29:02 UTC 2019
Author: kevans
Date: Thu Oct 24 03:29:01 2019
New Revision: 353995
URL: https://svnweb.freebsd.org/changeset/base/353995
Log:
MFC r352548: loader: fix typo in zalloc.
Modified:
stable/12/stand/libsa/zalloc.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/stand/libsa/zalloc.c
==============================================================================
--- stable/12/stand/libsa/zalloc.c Thu Oct 24 03:27:52 2019 (r353994)
+++ stable/12/stand/libsa/zalloc.c Thu Oct 24 03:29:01 2019 (r353995)
@@ -125,7 +125,8 @@ znalloc(MemPool *mp, uintptr_t bytes, size_t align)
continue;
/*
- * Cut extra from head and create new memory node from reminder.
+ * Cut extra from head and create new memory node from
+ * remainder.
*/
if (extra != 0) {
More information about the svn-src-all
mailing list