Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Dec 2017 05:18:52 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r326615 - head/usr.sbin/bhyveload
Message-ID:  <201712060518.vB65IqtK015931@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Wed Dec  6 05:18:52 2017
New Revision: 326615
URL: https://svnweb.freebsd.org/changeset/base/326615

Log:
  De-const to match changes in userboot.h
  
  Sponsored by: Netflix

Modified:
  head/usr.sbin/bhyveload/bhyveload.c

Modified: head/usr.sbin/bhyveload/bhyveload.c
==============================================================================
--- head/usr.sbin/bhyveload/bhyveload.c	Wed Dec  6 02:47:46 2017	(r326614)
+++ head/usr.sbin/bhyveload/bhyveload.c	Wed Dec  6 05:18:52 2017	(r326615)
@@ -513,14 +513,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;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712060518.vB65IqtK015931>