De-const to match changes in userboot.h

Sponsored by: Netflix
This commit is contained in:
Warner Losh 2017-12-06 05:18:52 +00:00
parent fbc88a6f35
commit cb37fc82b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326615

View file

@ -513,14 +513,14 @@ cb_getmem(void *arg, uint64_t *ret_lowmem, uint64_t *ret_highmem)
}
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;