svn commit: r329117 - stable/11/usr.sbin/bhyveload
Kyle Evans
kevans at FreeBSD.org
Sun Feb 11 03:10:27 UTC 2018
Author: kevans
Date: Sun Feb 11 03:10:27 2018
New Revision: 329117
URL: https://svnweb.freebsd.org/changeset/base/329117
Log:
MFC r326615: De-const to match changes in userboot.h
Modified:
stable/11/usr.sbin/bhyveload/bhyveload.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/usr.sbin/bhyveload/bhyveload.c
==============================================================================
--- stable/11/usr.sbin/bhyveload/bhyveload.c Sun Feb 11 03:09:08 2018 (r329116)
+++ stable/11/usr.sbin/bhyveload/bhyveload.c Sun Feb 11 03:10:27 2018 (r329117)
@@ -511,14 +511,14 @@ cb_getmem(void *arg, uint64_t *ret_lowmem, uint64_t *r
}
struct env {
- const char *str; /* name=value */
+ char *str; /* name=value */
SLIST_ENTRY(env) next;
};
static SLIST_HEAD(envhead, env) envhead;
static void
-addenv(const char *str)
+addenv(char *str)
{
struct env *env;
More information about the svn-src-stable
mailing list