mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Engine: tiny cosmetic fix
To make @creack happy :) Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
parent
d985fd4984
commit
0469e7d062
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ func (env *Env) Exists(key string) bool {
|
|||
}
|
||||
|
||||
func (env *Env) Init(src *Env) {
|
||||
*env = make([]string, 0, len(*src))
|
||||
(*env) = make([]string, 0, len(*src))
|
||||
for _, val := range *src {
|
||||
(*env) = append((*env), val)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue